/*
Theme Name: Rent-a-Rick Theme
Theme URI: 
Author: Voyager Marketing
Author URI: 
Description: A custom block theme for Rent-a-Rick.
Requires at least: 6.8
Tested up to: 6.8
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: rent-a-rick-theme
Tags: 
*/

:where(.wp-site-blocks) > * {
    margin-block-start: 0 !important;
  }

.is-style-offset-border {
    position: relative;
  }
  
  .is-style-offset-border .wp-block-media-text__media::after {
    content: '';
    position: absolute;
    top: 25px;
    right: 25px;
    width: 100%;
    height: 100%;
    background-color:#4e9ea1; /* teal background */
    z-index: -1;
    border-radius: 0;
  }

  @media (max-width: 768px) {
    .is-style-offset-border .wp-block-media-text__media::after {
      top: 0;
      right: 0;
    }
  }
  
  .is-style-offset-border.has-media-on-the-right .wp-block-media-text__media::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    width: 100%;
    height: 100%;
    background-color:#4e9ea1; /* teal background */
    z-index: -1;
    border-radius: 0;
  }

  @media (max-width: 768px) {
    .is-style-offset-border.has-media-on-the-right .wp-block-media-text__media::after {
      top: 0;
      left: 0;
    }
  }
  
  .wp-block-media-text__media {
    position: relative;
    display: block;
    border-radius: 0;
    z-index: 1;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }
  