html {
    line-height: 1.15;
    /* Set a sensible line-height */
    -webkit-text-size-adjust: 100%;
    /* Prevent adjustments of font size after orientation changes in iOS */
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0;
}

hr {
    height: 0;
    color: inherit;
    border: none;
    border-top: 1px solid;
    margin: 0;
    padding: 0;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp,
pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
    border: none;
    background: transparent;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    cursor: pointer;
}

textarea {
    overflow: auto;
}

[hidden] {
    display: none;
}

/* =========================================
     Global Variables and Base Styles
  ========================================= */

:root {
    /* ==============================
         Primary Theme Colors
         ============================== */
    --primary-color: #2085C1;
    /* Curious Blue */
    --primary-color-dark: #0C2463;
    /* Madison */
    --primary-color-light: #07ACEB;
    /* Cerulean */

    /* ==============================
            Secondary Colors
            ============================== */
    --secondary-color: #C08087;
    /* Old Rose */
    --secondary-color-light: #E2B8C0;
    /* Lighter shade of Old Rose */
    --secondary-color-dark: #8E5D63;
    /* Darker shade of Old Rose */

    /* ==============================
            Neutral Colors
            ============================== */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray-100: #F7F7F7;
    --color-gray-200: #E0E0E0;
    --color-gray-500: #9E9E9E;
    --color-gray-700: #616161;

    /* ==============================
            Text Colors
            ============================== */
    --text-color: var(--primary-color-dark);
    --text-color-secondary: var(--secondary-color-dark);
    --text-color-light: var(--color-white);

    /* ==============================
            Background Colors
            ============================== */
    --background-color: var(--color-gray-100);
    --background-color-secondary: var(--color-gray-200);

    /* ==============================
            Buttons and Links
            ============================== */
    --button-bg: var(--color-primary);
    --button-bg-hover: var(--primary-color-dark);
    --button-text: var(--color-white);

    --link-color: var(--color-primary);
    --link-hover-color: var(--primary-color-dark);

    /* Typography */
    --font-family-base: 'Tajawal', 'Noto Sans Arabic', Arial, sans-serif;
    --font-family-headings: 'Tajawal', 'Noto Sans Arabic', Arial, sans-serif;

    /* Font Sizes (example scale) */
    --font-size-xs: 0.75rem;
    /* 12px */
    --font-size-sm: 0.875rem;
    /* 14px */
    --font-size-md: 1rem;
    /* 16px base */
    --font-size-lg: 1.125rem;
    /* 18px */
    --font-size-xl: 1.25rem;
    /* 20px */
    --font-size-2xl: 1.5rem;
    /* 24px */
    --font-size-3xl: 1.875rem;
    /* 30px */
    --font-size-4xl: 2.25rem;
    /* 36px */

    /* Line Heights */
    --line-height-base: 1.5;
    --line-height-heading: 1.2;

    /* Spacing Scale (margin/padding) */
    --spacing-xs: 0.25rem;
    /* 4px */
    --spacing-sm: 0.5rem;
    /* 8px */
    --spacing-md: 1rem;
    /* 16px */
    --spacing-lg: 1.5rem;
    /* 24px */
    --spacing-xl: 2rem;
    /* 32px */

    /* Border Radius */
    --border-radius: 0.25rem;
    /* 4px */
}

/* =========================================
     Global Base Styles
  ========================================= */

body {
    font-family: var(--font-family-base);
    font-size: var(--font-size-md);
    color: var(--text-color);
    background-color: #fff;
    line-height: var(--line-height-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    direction: rtl;
    text-align: right;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-headings);
    /*color: var(--heading-color);*/
    line-height: var(--line-height-heading);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    /* Headings often look good in a bold weight */
}

p,
ul,
ol {
    margin-top: 0;
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

img {
    display: block;
    max-width: 100%;
    border-radius: var(--border-radius);
}

button,
input,
textarea,
select {
    font-family: var(--font-family-base);
    font-size: var(--font-size-md);
    color: var(--text-color);
}

hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: var(--spacing-md) 0;
}

/* Navbar Styling */
.custom-navbar {
    background-color: transparent;
    border-bottom: 1px solid var(--border-color);
    font-family: var(--font-family-base);
    font-size: var(--font-size-md);
    position: absolute;
    width: 100%;
    padding: 10px 0;
}


/* RTL Adjustments for Navbar */
.custom-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* For SVG logos, we can use fill to apply the primary color */
.custom-navbar .navbar-brand .navbar-logo {
    width: 60px;
    height: auto;
    fill: var(--primary-color);
}

/* Nav Links */
.custom-navbar .navbar-nav .nav-link {
    color: #FFFFFF;
    margin-inline: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    transition: background-color 0.3s, color 0.3s;
}

.fixed-navbar .navbar-nav .nav-link {
}

/* Active/Hover states */
.custom-navbar .navbar-nav .nav-link.active,
.custom-navbar .navbar-nav .nav-link:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
}

/* Toggler Icon */
.custom-navbar .navbar-toggler {
    border: none;
}

/* In RTL, the toggler icon remains the same visually, but its position changes */
.custom-navbar .navbar-toggler-icon {
    background-image: none;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    position: relative;
}

.custom-navbar .navbar-toggler-icon::before,
.custom-navbar .navbar-toggler-icon::after {
    content: "";
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    position: absolute;
    right: 0;
    /* Align to the right since RTL */
    transition: transform 0.3s;
}

.custom-navbar .navbar-toggler-icon::before {
    top: -6px;
}

.custom-navbar .navbar-toggler-icon::after {
    top: 6px;
}

/* Search Form (RTL adjustments)
   Instead of margin-left, we use margin-inline-end for the space before the search form.
*/
.custom-navbar .search-form {
    position: relative;
    border-radius: var(--border-radius);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -ms-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
    overflow: hidden;
}


.custom-navbar .search-input:focus {
    width: 200px;
    box-shadow: none;
}

.search-input {
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-color);
    background-color: var(--color-white);
    outline: none;
    width: 100px;
    /* Adjust as needed */
    transition: width 0.3s ease;
}

.search-button {
    border: none;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    padding: var(--spacing-sm) var(--spacing-md);
    cursor: pointer;
    transition: background-color 0.3s;
}

.custom-navbar .search-button:hover {
    background-color: #2a9aa9;
    /* Slightly darker shade of primary */
}


.fixed-navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    /* لضمان بقاء النافبار فوق باقي العناصر */
    background-color: var(--primary-color);
    /* لون الخلفية عند التثبيت */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* تأثير ظل خفيف */
    transition: all 0.3s ease;
    /* تأثير ناعم عند التبديل */
}

.fixed-navbar .navbar-nav .nav-link.active,
.fixed-navbar .navbar-nav .nav-link:hover {
    background: #fff;
    color: var(--primary-color);
}


/* ==============================
   Hero Section Styling
============================== */
.hero-section {
    background-color: #0b1834;
    background-image: url(../images/banner-bg.png);
    padding: var(--spacing-lg);
    padding-top: 80px;
    padding-bottom: 77px;
    height: 500px;
    position: relative;

}

.hero-section .hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    height: 100%;

}

.hero-section .hero-content {
    flex: 1;
    text-align: right;

}

.hero-section .hero-content .program-title {
    font-size: 52px;
    color: #FFFFFF;
    margin-bottom: var(--spacing-md);
    font-weight: bold;
}

.hero-section .hero-content .program-description {
    font-size: 20px;
    color: #FFFFFF;
    /*margin-bottom: 14px;*/
    line-height: 1.8;
}

.hero-section .hero-content .program-details p {
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: var(--spacing-xs);
}

.hero-section .hero-content .listen-now-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--border-radius);
    font-size: var(--font-size-lg);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/*.hero-section .hero-content .listen-now-btn:hover {*/
/*  background-color: var(--color-primary-dark);*/
/*}*/

.hero-section .hero-image {
    flex: 1;
    text-align: center;
    align-items: center;
    position: relative;
    height: 100%;
}

.hero-section .hero-image img {
    max-width: 120%;
    width: 120%;
    border-radius: var(--border-radius);
    position: absolute;
    height: 100%;
    object-fit: cover;
    object-position: 50%;


}

.hero-section .hero-image .default-image-class {
    object-fit: contain;
}



.song1_wrapper {
    position: absolute;
    left: 0;
    bottom: -77px;
    background: #071126;
    width: 100%;
}


.song1_wrapper .song1 {
    display: flex;
    justify-content: space-between;
}

.song1 .left {
    display: flex;
    grid-gap: 20px;
}

.song1 .left figure {
    margin: 0;
}

.song1 .caption {
    float: left;
    padding-top: 15px;
}

.song1 .caption .txt1 {
    font-size: 18px;
    color: #e5e1d8;
}

.song1 .caption .txt2 {
    font-size: 14px;
    color: #0c9ec3;
}

/* ============================= audio1 ====================== */
.audio1 {
    width: 650px;
    position: relative;
    margin-top: 32px;
}

.audio1 .mejs-container {
    background: none;
    font-family: inherit;
    font-size: inherit;
    color: #fff;
    height: auto !important;
}

.audio1 .mejs-container .mejs-controls {
    top: 0;
    background: none;
    height: 30px;
    position: relative;
}

.audio1 .mejs-container .mejs-controls div {
    font-size: 14px;
    font-family: inherit;
    line-height: 1;
}

.audio1 .mejs-controls a.mejs-horizontal-volume-slider {
    width: 0;
    overflow: hidden;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
}

.audio1 .mejs-controls .mejs-button button:focus {
    outline: none;
}


.audio1 .mejs-controls .mejs-cust1-button button {
    background: url(../images/btn-prev.png) center center no-repeat;
}

.audio1 .mejs-controls .mejs-playpause-button {
    width: 70px;
    height: 45px;
}

.audio1 .mejs-controls .mejs-play button {
    width: 70px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: url(../images/btn-play.png) center center no-repeat;
    margin: 0;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    top: -8px;
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.audio1 .mejs-controls .mejs-play button:hover {
    border-color: #fff;
}

.audio1 .mejs-controls .mejs-pause button {
    width: 70px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: url(../images/btn-pause.png) center center no-repeat;
    margin: 0;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    top: -8px;
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.audio1 .mejs-controls .mejs-pause button:hover {
    border-color: #fff;
}

.audio1 .mejs-controls .mejs-cust2-button button {
    background: url(../images/btn-next.png) center center no-repeat;
}

.audio1 .mejs-container .mejs-controls .mejs-time {
    padding-top: 8px;
}

.audio1 .mejs-controls .mejs-cust3-button {
    margin: 0 5px;
}

.audio1 .mejs-controls .mejs-cust3-button button {
}

.audio1 .mejs-controls .mejs-cust4-button {
    margin: 0 5px;
}

.audio1 .mejs-controls .mejs-cust4-button button {
}

.audio1 .mejs-controls div.mejs-time-rail {
    padding-top: 9px;
}

.audio1 .mejs-controls .mejs-time-rail .mejs-time-total {
    background: #756a66;
    height: 3px;
}

.audio1 .mejs-controls .mejs-time-rail .mejs-time-buffering {
    height: 3px;
}

.audio1 .mejs-controls .mejs-time-rail .mejs-time-loaded {
    background: #988986;
    height: 3px;
}

.audio1 .mejs-controls .mejs-time-rail .mejs-time-current {
    background: #0c9ec3;
    height: 3px;
}

.audio1 .mejs-controls .mejs-time-rail .mejs-time-handle {
    height: 3px;
}

.audio1 .mejs-controls .mejs-time-rail .mejs-time-float {
    font-size: 12px;
}

.audio1 .mejs-controls .mejs-cust1-button button {
    background: url(../images/btn-prev.png) center center no-repeat;
}

.audio1 .mejs-controls .mejs-cust2-button button {
    background: url(../images/btn-next.png) center center no-repeat;
}

/* ============================= audio1 end ====================== */


.footer {
    margin-top: 60px;
}

.blue-navbar {
    background: var(--primary-color);
    position: unset;
}

.about-block-area .bg-light {
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
}

.about-block-area .section-title {
    font-size: 1.8rem;
    font-weight: bold;
    border-bottom: 2px solid #ddd;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.about-block-area .text-justify {
    text-align: justify;
    font-size: 16px;
}


.about-block-area ul.list-unstyled i {
    font-size: 1.2rem;
    margin-right: 10px;
}

.about-block-area ul.list-unstyled li {
    font-size: 1rem;
    line-height: 1.6;
    display: flex
;
    gap: 10px;
}

.about-block-area section {
    padding: 0;
}

.search-icon {
    border: 1px solid #fff;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.footer .utf_post_block_style.post-float .utf_post_title,
.utf_post_overaly_style .utf_post_title {
    color: #fff;
}

.pagination p {
    margin-bottom: 0;
}

.page-link {
    height: 32px;
    display: flex;
    align-items: center;
    justify-items: center;
}

@media (max-width: 768px) {
    section, .section-padding {
        padding: 30px 0;
        position: relative;
    }

    .search-icon {
        margin-right: 20px;
    }

    .navbar-collapse {
        padding: 16px 0;
    }

    .navbar-toggler {
        background: #fff !important;
    }

    .navbar-nav {
        background: var(--primary-color-dark);
    }

    .song1_wrapper .song1 {
        flex-direction: column;
        padding: 16px 0;
    }

    .audio1 {
        width: 350px;
        margin: auto;
        margin-top: 16px;
    }

    .custom-navbar {
        background: var(--primary-color-dark);
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        z-index: 9999;
    }

    .utf_block_title {
        font-size: 12px;
    }

    .utf_featured_tab .nav-tabs {
        position: unset !important;
        margin-bottom: 20px;
    }

    .owl-stage-outer .item ul.utf_list_post .utf_post_block_style:last-child {
        margin-bottom: 0;
    }

    .social-widget {
        margin-top: 40px;
    }
    .search-sidebar{
        margin-top: 40px;

    }
    .page-title{
        margin-top: 120px;
    }

}

.player-time-progress #progress-container input[type=range]{
    display: none;
}
/* main player*/
.main-player {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.audio-player {
    /*background-color: var(--secondary-background-color);*/
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}


.song-meta-data .song-name,
.song-meta-data .song-artist {
    /*color: var(--text-color);*/
}

.player-volume input[type="range"] {
    direction: ltr;
}

.audio-player-hide {
    /*background-color: var(--secondary-background-color);*/
    /*color: var(--text-color);*/
}

.audio-player.show {
    bottom: -120px;
    border-top-left-radius: 0;
}

.audio-player.show i {
    transform: rotate(-180deg);
}

.audio-player.show .audio-player-hide {
    /*background: var(--secondary-background-color);*/
}


.song-meta-data .song-name,
.song-meta-data .song-artist {
    margin: 0;
}

.song-meta-data p {
    margin: 0;
}

.album-name {
    font-size: 14px;
    margin-bottom: 0;
}

/* Start Section Most Listened */
.list-item {
    margin: 0 0 20px 0;
    transition: all 0.3s ease-in-out;
}

.list-item:hover {
    transform: translateY(-5px);
}

.list-listened .item {
    color: var(--text-color);
    /*background: var(--secondary-background-color);*/
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.list-listened .item .image {
    width: 110px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.list-listened .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-listened .item .body-card {
    padding: 16px;
}

.body-card .episode-name {
    font-size: 16px;
    margin-bottom: 10px;
}

.body-card p {
    font-size: 12px;
    margin-bottom: 5px;
    /*color: var(--text-muted-color);*/
}

.body-card p:last-child {
    margin-bottom: 0;
}

/* ------------------------------
   Social Share Component Styles
   ------------------------------ */

.social-share {
    padding: 1.2rem 0;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
    text-align: center;
}

.social-share__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333; /* Dark text for readability */
}

.social-share__icons {
    display: inline-flex;
    gap: 0.5rem; /* Space between icons */
}

.social-share__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem; /* Fixed square */
    height: 2.2rem;
    border-radius: 50%; /* Circle shape */
    color: #fff;
    font-size: 1.25rem;
    transition: transform 0.2s ease, /* Smooth hover animation */ box-shadow 0.2s ease;
}

.social-share__link:hover {
    color: #fff;
    transform: translateY(-2px); /* Subtle lift on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Brand-specific backgrounds */
.social-share__link--facebook {
    background: #3b5998;
}

.social-share__link--twitter {
    background: #1da1f2;
}

.social-share__link--telegram {
    background: #0088cc;
}

.social-share__link--whatsapp {
    background: #25d366;
}
.utf_post_meta{
    display: flex
;
    align-items: center;
}
/* ==============================================
   Responsive Pagination Styles – Brand Colors
   ============================================== */

/* Container spacing */
.pagination-container {
    margin: 1.5rem 0;
}

/* Base pagination link */
.pagination .page-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    margin: 0 0.25rem;
    font-size: 0.95rem;
    color: #1c1c1c;                /* Body text color */
    background-color: #ffffff;     /* White background */
    border: 1px solid #dee2e6;     /* Light grey border */
    border-radius: 0.375rem;       /* Rounded corners */
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Hover state */
.pagination .page-link:hover:not(.disabled):not(.active) {
    background-color: #0c2463;     /* Dark blue hover */
    border-color: #0c2463;
    color: #ffffff;                /* White text on hover */
    transform: translateY(-1px);
    z-index: 2;
}

/* Active page */
.pagination .page-item.active .page-link {
    background-color: #ec0000;     /* Brand red for active */
    border-color: #ec0000;
    color: #ffffff;                /* White text */
    pointer-events: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Disabled page */
.pagination .page-item.disabled .page-link {
    background-color: #f7f7f7;     /* Light disabled bg */
    border-color: #dee2e6;
    color: #adb5bd;                /* Muted grey text */
    cursor: not-allowed;
    pointer-events: none;
}

/* Arrow buttons for desktop */
.pagination-desktop .page-link {
    min-width: 2.5rem;
}

/* Pagination info text (desktop) */
.pagination-info {
    font-size: 0.875rem;           /* 14px */
    color: #1c1c1c;
}

/* Mobile – larger tap targets */
@media (max-width: 575.98px) {
    .pagination-mobile .page-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        margin: 0 0.125rem;
    }
}

/* Desktop – slightly tighter spacing */
@media (min-width: 576px) {
    .pagination-desktop .page-link {
        padding: 0.5rem 0.85rem;
        font-size: 0.95rem;
    }
}

.al-Jazeera-logo-container{
    position: relative;
    z-index: 9;
    margin-top: 40px;
}

.al-Jazeera-logo-container h4{
    color: #fff;
    font-size: 16px;
}
.al-Jazeera-logo{

    max-width: 260px;
    width: 100%;


}
/* General container styling */
.ad-widget {
    text-align: center;
    padding: 10px;
    padding-top: 0px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Advertisement image styling */
.custom-ad-image {
    max-width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 6px;
    transition: transform 0.2s;
}

/* Hover effect on ad image */
.custom-ad-image:hover {
    transform: scale(1.02);
}
/* Full-width horizontal banner container */
.ad-horizontal-widget {
    width: 100%;                  /* take up the entire parent width */
    margin: 20px 0;               /* vertical spacing above/below */
    overflow: hidden;             /* hide any overflow if image is taller */
    background: #f9f9f9;          /* optional background color */
    border-radius: 6px;           /* slightly rounded corners */
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 40px;
}

/* Constrain banner height and cover full width */
.custom-ad-horizontal-image {
    display: block;
    width: 100%;
    height: 120px;                 /* fixed small height; adjust as needed */
    object-fit: cover;            /* crop/scale image to fill dimensions */
    transition: transform 0.2s;
}

/* Subtle zoom on hover */
.custom-ad-horizontal-image:hover {
    transform: scale(1.02);
}




@media (max-width: 768px) {
    .hero-section .hero-container {
        flex-direction: column;
        /* تحويل الاتجاه إلى عمودي */
        text-align: center;
    }

    .hero-section .hero-content {
        text-align: center;
        /* محاذاة النص في المنتصف */
    }

    .navbar > .container {
        justify-content: space-between !important;
    }
    .hero-section {
        padding-top: 110px;
        padding-bottom: 40px;
        height: auto;
    }
    .hero-section .hero-image img {
        max-width: 100%;
        width: 90%;
        position: unset;
        height: 100%;
        margin: auto;
        object-position: center;
    }
    .hero-section .hero-content .program-description{
        margin-bottom: 50px;
    }
    .al-Jazeera-logo-container{
        margin: 40px 0;
    }
    .al-Jazeera-logo {
        max-width: 200px;}
    .audio-player.show .audio-player-hide{
        top: -55px;
    }
}
