/*
Theme Name: VSV Utrecht
Theme URI: 
Author: GI
Author URI: 
Description: Theme to hold styling
Requires at least: 6.9
Tested up to: 6.9
Requires PHP: 5.7
Version: 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vsv-utrecht
Tags: 
*/

.is-style-vsv-rounded {
  border-radius: 5px 5px 140px 5px;
  overflow: hidden;
  position: relative;

  & img {
    position: relative;
    z-index: 1;
    border-radius: 5px 5px 140px 140px;
  }

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    @apply bg-green-300;
  }

  &::after {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    @apply bg-green-300;
    z-index: 2;
  }
}
