:root {
    --primary-color: #E60000;
    --text-color: #9FA0B1;
    --white-color: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-family: 'Lato';
    overflow-x: hidden;
    background-image: linear-gradient(to bottom, rgba(100, 0, 0, 0.9), #000000), url(../images/red-gradient-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

html {
    scroll-behavior: smooth;
}

/* Force transparent backgrounds on sections to show body background */
.rock-podcast-about-wrapper,
.rock-podcast-ticket-wrapper,
.rock-podcast-service-wrapper,
.rock-podcast-galry-wrapper,
.rock-podcast-event-wrapper,
.rock-podcast-contact-wrapper,
.rock-podcast-bg-cover {
    background: none !important;
    background-image: none !important;
    background-color: transparent !important;
}

/* Specific background for the banner section */
.rock-podcast-banner-wrapper::before {
    background-image: url(../images/hero-bg.jpg) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    opacity: 1 !important;
}

/* Scroll */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: #171c39;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    height: 100px;
    background-color: var(--primary-color);
}

/* Scroll */
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
    word-break: break-word;
    font-family: 'Volkhov';
}

/* Event Image Styling */
.rock-podcast-event-img {
    width: 80%;
    /* Reduce size */
    margin: 0 auto;
    /* Center the image */
    display: block;
    cursor: default;
}

.rock-podcast-event-img img {
    filter: grayscale(0%) !important;
    transition: all 0.3s ease-in-out;
    width: 100%;
    pointer-events: none;
    /* Remove zoom/click */
}

.rock-podcast-event-img:hover img {
    filter: grayscale(0%);
}

/* DJ Marquee */
.rock-podcast-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
}

.rock-podcast-marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.rock-podcast-marquee-item {
    display: inline-block;
    margin: 0 40px;
    vertical-align: middle;
}

.rock-podcast-marquee-item img {
    height: 120px;
    width: auto;
    transition: transform 0.3s;
    filter: grayscale(100%);
    opacity: 0.7;
}

.rock-podcast-marquee-item img:hover {
    transform: scale(1.1);
    cursor: pointer;
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Section Separator */
.rock-podcast-section-separator {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
    position: relative;
    opacity: 0.8;
    animation: separatorPulse 3s infinite ease-in-out;
}

@keyframes separatorPulse {
    0% {
        width: 150px;
        opacity: 0.5;
    }

    50% {
        width: 300px;
        opacity: 1;
    }

    100% {
        width: 150px;
        opacity: 0.5;
    }
}

/* Red borders for content blocks */
.rock-podcast-event-inner,
.rock-podcast-marquee,
.rock-podcast-gallery-img,
.rock-podcast-about-content,
.rock-podcast-about-img {
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(230, 0, 0, 0.1);
    padding: 20px;
    /* Add some spacing inside the border */
    background: rgba(0, 0, 0, 0.3);
    /* Slight dark background to pop */
}

/* Adjust padding for specific elements if needed */
:root {
    --primary-color: #E60000;
    --text-color: #9FA0B1;
    --white-color: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-family: 'Lato';
    overflow-x: hidden;
    background-image: linear-gradient(to bottom, rgba(100, 0, 0, 0.9), #000000), url(../images/red-gradient-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

html {
    scroll-behavior: smooth;
}

/* Force transparent backgrounds on sections to show body background */
.rock-podcast-about-wrapper,
.rock-podcast-ticket-wrapper,
.rock-podcast-service-wrapper,
.rock-podcast-galry-wrapper,
.rock-podcast-event-wrapper,
.rock-podcast-contact-wrapper,
.rock-podcast-bg-cover {
    background: none !important;
    background-image: none !important;
    background-color: transparent !important;
}

/* Specific background for the banner section */
.rock-podcast-banner-wrapper::before {
    background-image: url(../images/hero-bg.jpg) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    opacity: 1 !important;
}

/* Scroll */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: #171c39;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    height: 100px;
    background-color: var(--primary-color);
}

/* Scroll */
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
    word-break: break-word;
    font-family: 'Volkhov';
}

/* Event Image Styling */
.rock-podcast-event-img {
    width: 80%;
    /* Reduce size */
    margin: 0 auto;
    /* Center the image */
    display: block;
    cursor: default;
}

.rock-podcast-event-img img {
    filter: grayscale(100%);
    transition: all 0.3s ease-in-out;
    width: 100%;
    pointer-events: none;
    /* Remove zoom/click */
}

.rock-podcast-event-img:hover img {
    filter: grayscale(0%);
}

/* DJ Marquee */
.rock-podcast-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
}

.rock-podcast-marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.rock-podcast-marquee-item {
    display: inline-block;
    margin: 0 40px;
    vertical-align: middle;
}

.rock-podcast-marquee-item img {
    height: 120px;
    width: auto;
    transition: transform 0.3s;
    filter: grayscale(100%);
    opacity: 0.7;
}

.rock-podcast-marquee-item img:hover {
    transform: scale(1.1);
    cursor: pointer;
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Section Separator */
.rock-podcast-section-separator {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
    position: relative;
    opacity: 0.8;
    animation: separatorPulse 3s infinite ease-in-out;
}

@keyframes separatorPulse {
    0% {
        width: 150px;
        opacity: 0.5;
    }

    50% {
        width: 300px;
        opacity: 1;
    }

    100% {
        width: 150px;
        opacity: 0.5;
    }
}

/* Red borders for content blocks */
.rock-podcast-event-inner,
.rock-podcast-marquee,
.rock-podcast-gallery-img,
.rock-podcast-about-content,
.rock-podcast-about-img {
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(230, 0, 0, 0.1);
    padding: 20px;
    /* Add some spacing inside the border */
    background: rgba(0, 0, 0, 0.3);
    /* Slight dark background to pop */
}

/* Adjust padding for specific elements if needed */
.rock-podcast-gallery-img {
    padding: 0;
    /* Gallery images might not need padding if they fill the box */
    overflow: hidden;
}

/* Footer Styling */
.rock-podcast-footer-wrapper {
    background-color: #050000 !important;
    /* Very dark background */
    border-top: 2px solid var(--primary-color);
    /* Red demarcation line */
    padding-top: 60px;
    position: relative;
    z-index: 10;
}

.rock-podcast-footer-widget p,
.rock-podcast-footer-widget h4,
.rock-podcast-footer-widget span,
.rock-podcast-footer-widget a {
    color: var(--white-color) !important;
    opacity: 0.9;
}

/* Footer Separator */
.footer-separator {
    border-right: 2px solid var(--primary-color);
    padding-right: 30px;
}

@media (max-width: 991px) {
    .footer-separator {
        border-right: none;
        border-bottom: 2px solid var(--primary-color);
        padding-right: 0;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

/* Force transparent backgrounds on sections to show body background */
.rock-podcast-about-wrapper,
.rock-podcast-ticket-wrapper,
.rock-podcast-service-wrapper,
.rock-podcast-galry-wrapper,
.rock-podcast-event-wrapper,
.rock-podcast-contact-wrapper,
.rock-podcast-bg-cover {
    background: none !important;
    background-image: none !important;
    background-color: transparent !important;
}

/* Specific background for the banner section */
.rock-podcast-banner-wrapper::before {
    background-image: url(../images/hero-bg.jpg) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    opacity: 1 !important;
}

/* Scroll */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: #171c39;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    height: 100px;
    background-color: var(--primary-color);
}

/* Scroll */
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
    word-break: break-word;
    font-family: 'Volkhov';
}

/* Event Image Styling */
.rock-podcast-event-img {
    width: 80%;
    /* Reduce size */
    margin: 0 auto;
    /* Center the image */
    display: block;
    cursor: default;
}

.rock-podcast-event-img img {
    filter: grayscale(0%) !important;
    transition: all 0.3s ease-in-out;
    width: 100%;
    pointer-events: none;
    /* Remove zoom/click */
}

.rock-podcast-event-img:hover img {
    filter: grayscale(0%);
}

/* DJ Marquee */
.rock-podcast-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
}

.rock-podcast-marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.rock-podcast-marquee-item {
    display: inline-block;
    margin: 0 40px;
    vertical-align: middle;
}

.rock-podcast-marquee-item img {
    height: 120px;
    width: auto;
    transition: transform 0.3s;
    filter: grayscale(100%);
    opacity: 0.7;
}

.rock-podcast-marquee-item img:hover {
    transform: scale(1.1);
    cursor: pointer;
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Section Separator */
.rock-podcast-section-separator {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
    position: relative;
    opacity: 0.8;
    animation: separatorPulse 3s infinite ease-in-out;
}

@keyframes separatorPulse {
    0% {
        width: 150px;
        opacity: 0.5;
    }

    50% {
        width: 300px;
        opacity: 1;
    }

    100% {
        width: 150px;
        opacity: 0.5;
    }
}

/* Red borders for content blocks */
.rock-podcast-event-inner,
.rock-podcast-marquee,
.rock-podcast-gallery-img,
.rock-podcast-about-content,
.rock-podcast-about-img {
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(230, 0, 0, 0.1);
    padding: 20px;
    /* Add some spacing inside the border */
    background: rgba(0, 0, 0, 0.3);
    /* Slight dark background to pop */
}

/* Adjust padding for specific elements if needed */
.rock-podcast-gallery-img {
    padding: 0;
    /* Gallery images might not need padding if they fill the box */
    overflow: hidden;
}

/* Footer Styling */
.rock-podcast-footer-wrapper {
    background-color: #050000 !important;
    /* Very dark background */
    border-top: 2px solid var(--primary-color);
    /* Red demarcation line */
    padding-top: 60px;
    position: relative;
    z-index: 10;
}

.rock-podcast-footer-widget p,
.rock-podcast-footer-widget h4,
.rock-podcast-footer-widget span,
.rock-podcast-footer-widget a {
    color: var(--white-color) !important;
    opacity: 0.9;
}

}

/* Force transparent backgrounds on sections to show body background */
.rock-podcast-about-wrapper,
.rock-podcast-ticket-wrapper,
.rock-podcast-service-wrapper,
.rock-podcast-galry-wrapper,
.rock-podcast-event-wrapper,
.rock-podcast-contact-wrapper,
.rock-podcast-bg-cover {
    background: none !important;
    background-image: none !important;
    background-color: transparent !important;
}

/* Specific background for the banner section */
.rock-podcast-banner-wrapper::before {
    background-image: url(../images/hero-bg.jpg) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    opacity: 1 !important;
}

/* Scroll */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: #171c39;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    height: 100px;
    background-color: var(--primary-color);
}

/* Scroll */
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
    word-break: break-word;
    font-family: 'Volkhov';
}

/* Event Image Styling */
.rock-podcast-event-img {
    width: 80%;
    /* Reduce size */
    margin: 0 auto;
    /* Center the image */
    display: block;
    cursor: default;
}

.rock-podcast-event-img img {
    filter: grayscale(0%) !important;
    transition: all 0.3s ease-in-out;
    width: 100%;
    pointer-events: none;
    /* Remove zoom/click */
}

.rock-podcast-event-img:hover img {
    filter: grayscale(0%);
}

/* DJ Marquee */
.rock-podcast-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
}

.rock-podcast-marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.rock-podcast-marquee-item {
    display: inline-block;
    margin: 0 40px;
    vertical-align: middle;
}

.rock-podcast-marquee-item img {
    height: 120px;
    width: auto;
    transition: transform 0.3s;
    filter: grayscale(100%);
    opacity: 0.7;
}

.rock-podcast-marquee-item img:hover {
    transform: scale(1.1);
    cursor: pointer;
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Section Separator */
.rock-podcast-section-separator {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
    position: relative;
    opacity: 0.8;
    animation: separatorPulse 3s infinite ease-in-out;
}

@keyframes separatorPulse {
    0% {
        width: 150px;
        opacity: 0.5;
    }

    50% {
        width: 300px;
        opacity: 1;
    }

    100% {
        width: 150px;
        opacity: 0.5;
    }
}

/* Red borders for content blocks */
.rock-podcast-event-inner,
.rock-podcast-marquee,
.rock-podcast-gallery-img,
.rock-podcast-about-content,
.rock-podcast-about-img {
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(230, 0, 0, 0.1);
    padding: 20px;
    /* Add some spacing inside the border */
    background: rgba(0, 0, 0, 0.3);
    /* Slight dark background to pop */
}

/* Adjust padding for specific elements if needed */
.rock-podcast-gallery-img {
    padding: 0;
    /* Gallery images might not need padding if they fill the box */
    overflow: hidden;
}

/* Footer Styling */
.rock-podcast-footer-wrapper {
    background-color: #050000 !important;
    /* Very dark background */
    border-top: 2px solid var(--primary-color);
    /* Red demarcation line */
    padding-top: 60px;
    position: relative;
    z-index: 10;
}

.rock-podcast-footer-widget p,
.rock-podcast-footer-widget h4,
.rock-podcast-footer-widget span,
.rock-podcast-footer-widget a {
    color: var(--white-color) !important;
    opacity: 0.9;
}


/* Force transparent backgrounds on sections to show body background */
.rock-podcast-about-wrapper,
.rock-podcast-ticket-wrapper,
.rock-podcast-service-wrapper,
.rock-podcast-galry-wrapper,
.rock-podcast-event-wrapper,
.rock-podcast-contact-wrapper,
.rock-podcast-bg-cover {
    background: none !important;
    background-image: none !important;
    background-color: transparent !important;
}

/* Specific background for the banner section */
.rock-podcast-banner-wrapper::before {
    background-image: url(../images/hero-bg.jpg) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    opacity: 1 !important;
}

/* Scroll */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: #171c39;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    height: 100px;
    background-color: var(--primary-color);
}

/* Scroll */
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
    word-break: break-word;
    font-family: 'Volkhov';
}

/* Event Image Styling */
.rock-podcast-event-img {
    width: 80%;
    /* Reduce size */
    margin: 0 auto;
    /* Center the image */
    display: block;
    cursor: default;
}

.rock-podcast-event-img img {
    filter: grayscale(0%) !important;
    transition: all 0.3s ease-in-out;
    width: 100%;
    pointer-events: none;
    /* Remove zoom/click */
}

.rock-podcast-event-img:hover img {
    filter: grayscale(0%);
}

/* DJ Marquee */
.rock-podcast-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
}

.rock-podcast-marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.rock-podcast-marquee-item {
    display: inline-block;
    margin: 0 40px;
    vertical-align: middle;
}

.rock-podcast-marquee-item img {
    height: 120px;
    width: auto;
    transition: transform 0.3s;
    filter: grayscale(100%);
    opacity: 0.7;
}

.rock-podcast-marquee-item img:hover {
    transform: scale(1.1);
    cursor: pointer;
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Section Separator */
.rock-podcast-section-separator {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
    position: relative;
    opacity: 0.8;
    animation: separatorPulse 3s infinite ease-in-out;
}

@keyframes separatorPulse {
    0% {
        width: 150px;
        opacity: 0.5;
    }

    50% {
        width: 300px;
        opacity: 1;
    }

    100% {
        width: 150px;
        opacity: 0.5;
    }
}

/* Red borders for content blocks */
.rock-podcast-event-inner,
.rock-podcast-marquee,
.rock-podcast-gallery-img,
.rock-podcast-about-content,
.rock-podcast-about-img {
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(230, 0, 0, 0.1);
    padding: 20px;
    /* Add some spacing inside the border */
    background: rgba(0, 0, 0, 0.3);
    /* Slight dark background to pop */
}

/* Adjust padding for specific elements if needed */
.rock-podcast-gallery-img {
    padding: 0;
    /* Gallery images might not need padding if they fill the box */
    overflow: hidden;
}

/* Footer Styling */
.rock-podcast-footer-wrapper {
    background-color: #050000 !important;
    /* Very dark background */
    border-top: 2px solid var(--primary-color);
    /* Red demarcation line */
    padding-top: 60px;
    position: relative;
    z-index: 10;
}

.rock-podcast-footer-widget p,
.rock-podcast-footer-widget h4,
.rock-podcast-footer-widget span {
    color: var(--white-color) !important;
    opacity: 0.9;
}

.rock-podcast-copyright-wrapper {
    background-color: #000000 !important;
    border-top: 1px solid rgba(230, 0, 0, 0.2);
}

.rock-podcast-footer-logo img {
    max-width: 100px;
    height: auto;
}

.partner-logo {
    max-height: 40px;
    /* Significantly reduced size */
    width: auto !important;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
}

/* Override default footer post list styles */
.rock-podcast-footer-post ul {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Reduced gap */
    flex-wrap: wrap;
    justify-content: flex-start;
}

.rock-podcast-footer-post ul li {
    width: auto !important;
    flex: 0 0 auto !important;
    border-radius: 0;
    overflow: visible;
}

.rock-podcast-footer-post ul li img {
    width: auto !important;
    /* Allow natural width */
    height: auto !important;
    /* Allow natural height constrained by max-height */
    max-height: 40px;
    /* Enforce max height */
    border-radius: 0;
    object-fit: contain;
}

/* Gallery Image Styling */
.rock-podcast-gallery-img img {
    width: 100%;
    height: auto;
    /* Allow natural height for varied sizes */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 10px;
    /* Optional: adds rounded corners for better aesthetics */
}

.rock-podcast-gallery-img:hover img {
    transform: scale(1.05);
    /* Slightly reduced scale effect */
}

/* Gallery Grid Layout */
.rock-podcast-glry-single-parent {
    width: 33.333%;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .rock-podcast-glry-single-parent {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .rock-podcast-glry-single-parent {
        width: 100%;
    }
}

/* Staff Card Styling */
.rock-podcast-service-box {
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(230, 0, 0, 0.2);
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.6);
    /* Semi-transparent dark background */
    overflow: hidden;
    margin-bottom: 30px;
    /* Ensure spacing */
}

.rock-podcast-service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(230, 0, 0, 0.6);
    border-color: #ff3333;
    /* Brighter red on hover */
}

.rock-podcast-service-inner {
    border-bottom: 1px solid var(--primary-color);
    /* Separator between image/placeholder and text */
}

.rock-podcast-service-content {
    padding: 20px;
}