/* ================================================================ */
/* Media Center Pages - Consolidated Inline Styles                  */
/* ================================================================ */

/* --- mediacenter.aspx --- */
        :root {
            --radius-lg: 16px;
            --radius-md: 8px;
            --radius-sm: 4px;
            --border-border-neutral-primary: #d2d6db;
            --text-text-default: #161616;
            --text-text-display: #1f2a37;
            --text-text-oncolor-primary: #ffffff;
            --button-button-background-primary-default: #1b8354;
            --global-spacing-4xl: 32px;
            --global-spacing-3xl: 24px;
            --global-spacing-xl: 16px;
            --global-spacing-md: 8px;
            --card-card-lg-gap: 24px;
        }

        body {
            font-family: boldFont;
        }

        /* --- Section Layout --- */
        .articles-and-news-section {
            padding: 40px 20px; /* Reduced padding for mobile, handled by container max-width */
            display: flex;
            flex-direction: column;
            gap: 32px;
            align-items: center;
            justify-content: center;
            position: relative;
            direction: rtl; /* Force RTL for Arabic content alignment */
        }

        .section {
            display: flex;
            flex-direction: column;
            gap: 32px;
            align-items: flex-end;
            justify-content: flex-start;
            flex: 1;
            max-width: 1280px;
            width: 100%;
            position: relative;
        }

        .content4 {
            display: flex;
            flex-direction: column;
            gap: 24px;
            align-items: flex-end;
            justify-content: flex-start;
            align-self: stretch;
            position: relative;
            width: 100%;
        }

        /* --- Header & Title --- */
        .title {
            display: flex;
            flex-direction: row;
            gap: 32px;
            align-items: center;
            justify-content: space-between; /* Ensures title and button are on opposite sides */
            align-self: stretch;
            width: 100%;
            flex-wrap: wrap; /* Allows wrapping on very small screens */
        }

        .section-title-text {
            /* Previously .div3 */
            color: #166a45ba;
            text-align: right;
            font-family: boldFont;
            font-size: 30px; /* Responsive font size handled by viewport if needed, kept fixed for now */
            line-height: 1.2;
            font-weight: 700;
            position: relative;
            flex: 1; /* Allow title to take available space */
            min-width: 200px;
            margin-bottom: 0;
        }

        [dir="ltr"] .section-title-text {
            text-align: left;
        }

        /* --- Buttons --- */
        .button {
            border-radius: 4px;
            border: 1px solid var(--border-border-neutral-primary);
            padding: 0 16px;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            height: 40px;
            text-decoration: none;
            transition: all 0.2s;
            white-space: nowrap;
            background-color: transparent;
            color: var(--text-text-default);
        }

            .button:hover {
                background-color: #f9fafb;
                border-color: #1b8354;
                color: #1b8354;
            }

        .text6 {
            color: var(--text-text-default);
            text-align: center;
            font-size: 16px;
            line-height: 24px;
            font-weight: 400;
        }

        .button21 {
            background: var(--button-button-background-primary-default);
            border-radius: 5px;
            padding: 0 16px;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            height: 40px;
            text-decoration: none;
            width: auto;
            min-width: 80px;
            transition: background 0.3s;
        }

            .button21:hover {
                background: #156e46;
            }

        /* Mobile responsive - more flexible widths */
        @media (max-width: 768px) {
            .section-title-text {
                min-width: auto;
                font-size: 18px;
            }
            .button21 {
                width: 100%;
                max-width: 200px;
                min-width: auto;
            }
            .news-item {
                min-width: 0;
            }
            .home-page-desktop-ar-dga-version {
                overflow-x: auto;
            }
            .articles-and-news-section {
                overflow-x: visible;
            }
        }

        .button21-video {
            background: var(--button-button-background-primary-default);
            border-radius: 5px;
            padding: 0 16px;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            height: 40px;
            text-decoration: none;
            width: 40%;
            transition: background 0.3s;
            color: #ffffff;
        }

            .button21-video:hover {
                background: #156e46;
            }

        .text7 {
            color: var(--text-text-oncolor-primary);
            text-align: center;
            font-size: 16px;
            line-height: 24px;
            font-weight: 400;
            font-family: 'regularFont';
        }

        /* --- Cards & Grid --- */
        /* We use Bootstrap row/col, but we add h-100 to ensure equal height cards */

        .news-item {
            display: flex;
            flex-direction: column;
            background: #ffffff;
            border-radius: 16px;
            border: 1px solid var(--border-border-neutral-primary);
            padding: 16px;
            gap: 16px;
            height: 100%;
            transition: transform 0.2s, box-shadow 0.2s;
            position: relative;
            overflow: hidden;
            box-sizing: border-box;
            min-width: 0;
            max-width: 100%;
        }

        .news-item * {
            box-sizing: border-box;
        }

        .news-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
                border-color: #1b8354;
            }

        /* Image Wrapper - Fixed aspect ratio to prevent breaking */
        .news-item__image {
            position: relative;
            width: 100%;
            max-width: 100%;
            border-radius: 8px;
            overflow: hidden;
            height: 220px;
            flex-shrink: 0;
            margin-bottom: 8px;
        }

        .news-item__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.5s ease-in-out;
            display: block;
        }

        .news-item:hover .news-item__image img {
            transform: scale(1.05);
        }

        /* Content Area - Pushes button down */
        .news-item__caption {
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex-grow: 1; /* Takes up all available vertical space */
            justify-content: flex-start;
        }

        .news-item__title {
            line-height: 1.6;
            font-family: boldFont;
            font-size: 16px; /* Slightly larger for readability */
            color: #000000;
            text-align: right;
            font-weight: 600;
            margin: 0;
            /* Removed fixed height (40px) so long text can wrap correctly */
            display: -webkit-box;
            -webkit-line-clamp: 3; /* Optional: Limits to 3 lines, remove to show all */
            -webkit-box-orient: vertical;
            overflow: hidden;
            
        }

        .actionsbtn {
            margin-top: auto;
            display: flex;
            justify-content: flex-end;
            width: 100%;
        }

        /* --- Video Specifics --- */
        .video-thumbnail-container {
            aspect-ratio: 16/9;
            height: auto;
            cursor: pointer;
            position: relative;
            max-width: 100%;
        }

        .video-thumbnail-container img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.9);
            color: #1B8354;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            z-index: 2;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            pointer-events: none;
        }

        .video-thumbnail-container:hover .play-icon {
            background-color: #1B8354;
            color: #fff;
            transform: translate(-50%, -50%) scale(1.1);
        }

        /* --- Modal --- */
        .video-close-btn {
            position: absolute;
            top: 15px;
            right: 15px; /* RTL positioning */
            z-index: 1055;
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s;
            border: none;
        }

            .video-close-btn:hover {
                background: #fff;
                color: #000;
            }

        .fa, .far, .fas {
            font-family: "Font Awesome 5 Free" !important;
        }

/* Mobile responsive - 768px breakpoint - COMPREHENSIVE */
@media (max-width: 768px) {
    /* Reset Bootstrap row/col system - stack everything vertically */
    .row {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }
    
    /* All column classes - force single column */
    .col-,
    [class*="col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        min-width: 0 !important;
    }
    
    /* News items - full width cards */
    .news-item {
        width: 100% !important;
        min-width: 0 !important;
        margin-bottom: 16px !important;
    }
    
    /* Section title text */
    .section-title-text {
        min-width: auto !important;
        font-size: 18px !important;
        text-align: center !important;
    }
    
    /* Buttons - full width for touch */
    .button21 {
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
        display: flex !important;
        justify-content: center !important;
    }
    
    /* Action buttons container */
    .actionsbtn {
        width: 100% !important;
        padding-top: 12px !important;
        display: flex !important;
        justify-content: center !important;
    }
    
    /* Allow horizontal overflow instead of cutting content */
    .home-page-desktop-ar-dga-version {
        overflow-x: auto !important;
    }
    
    .articles-and-news-section {
        overflow-x: visible !important;
    }
}

/* English/LTR all pages - force mobile responsive */
@media (max-width: 768px) {
    html[dir="ltr"] .row,
    html[dir="ltr"] .news-item,
    html[dir="ltr"] [class*="col-"],
    html[dir="ltr"] .actionsbtn,
    html[dir="ltr"] .button21 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

        @media (max-width: 576px) {
            .row > [class*="col-"] {
                max-width: 100%;
                min-width: 0;
            }
            .news-item {
                width: 100%;
            }
            .col-12.col-md-6.col-lg-4 {
                width: 100%;
                max-width: 100%;
                flex: 0 0 100%;
            }
        }

        /* Tablet and mobile grid fixes */
        @media (max-width: 992px) {
            .articles-and-news-section .row {
                display: flex;
                flex-wrap: wrap;
            }
            .articles-and-news-section .col-md-6,
            .articles-and-news-section .col-lg-4 {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }

        @media (max-width: 576px) {
            .articles-and-news-section .col-md-6,
            .articles-and-news-section .col-lg-4 {
                flex: 0 0 100%;
                max-width: 100%;
            }
            .news-item {
                width: 100%;
            }
            .actionsbtn {
                width: 100%;
                padding-top: 12px;
            }
            .actionsbtn .button21 {
                width: 100%;
                max-width: 100%;
            }
        }
         .breadcrumb {
     direction: rtl;
     display: flex;
     align-items: center;
     flex-wrap: wrap;
     gap: 8px;
     font-size: 14px;
     color: #333;
     padding: 8px 12px;
     background: #f3fcf6 !important;
     padding-right: 5%;
 }

 hr {
     margin: 0px !important;
     color: #f3fcf6 !important;
     border: 0;
     border-top: var(--bs-border-width) solid;
     opacity: .25;
     /* background: #f3fcf6; */
 }
 .btn-ssp-style {
    padding: 10px 24px;
    background-color: transparent;
    color: #1b8354;
    border: 1px solid #1b8354;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
    font-family: inherit;
    direction: rtl;
}
 .fa, .far, .fas {
    font-family: "Font Awesome 5 Free" !important;
}
 .btn-ssp-style:hover {
    background-color: #1b8354;
    color: #FFFFFF;
}

/* --- mediacenter-en.aspx --- */
        :root {
            --radius-lg: 16px;
            --radius-md: 8px;
            --radius-sm: 4px;
            --border-border-neutral-primary: #d2d6db;
            --text-text-default: #161616;
            --text-text-display: #1f2a37;
            --text-text-oncolor-primary: #ffffff;
            --button-button-background-primary-default: #1b8354;
            --global-spacing-4xl: 32px;
            --global-spacing-3xl: 24px;
            --global-spacing-xl: 16px;
            --global-spacing-md: 8px;
            --card-card-lg-gap: 24px;
        }

        body {
            font-family: boldFont;
        }

        /* --- Section Layout --- */
        .articles-and-news-section {
            padding: 40px 20px; /* Reduced padding for mobile, handled by container max-width */
            display: flex;
            flex-direction: column;
            gap: 32px;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .section {
            display: flex;
            flex-direction: column;
            gap: 32px;
            align-items: flex-end;
            justify-content: flex-start;
            flex: 1;
            max-width: 1280px;
            width: 100%;
            position: relative;
        }

        .content4 {
            display: flex;
            flex-direction: column;
            gap: 24px;
            align-items: flex-end;
            justify-content: flex-start;
            align-self: stretch;
            position: relative;
            width: 100%;
        }

        /* --- Header & Title --- */
        .title {
            display: flex;
            flex-direction: row;
            gap: 32px;
            align-items: center;
            justify-content: space-between; /* Ensures title and button are on opposite sides */
            align-self: stretch;
            width: 100%;
            flex-wrap: wrap; /* Allows wrapping on very small screens */
        }

        .section-title-text {
            color: var(--text-text-display);
            font-family: boldFont;
            font-size: 30px; /* Responsive font size handled by viewport if needed, kept fixed for now */
            line-height: 1.2;
            font-weight: 700;
            position: relative;
            flex: 1; /* Allow title to take available space */
            min-width: 200px;
            margin-bottom: 0;
        }

        /* --- Buttons --- */
        .button {
            border-radius: 4px;
            border: 1px solid var(--border-border-neutral-primary);
            padding: 0 16px;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            height: 40px;
            text-decoration: none;
            transition: all 0.2s;
            white-space: nowrap;
            background-color: transparent;
            color: var(--text-text-default);
        }

            .button:hover {
                background-color: #f9fafb;
                border-color: #1b8354;
                color: #1b8354;
            }

        .text6 {
            color: var(--text-text-default);
            text-align: center;
            font-size: 16px;
            line-height: 24px;
            font-weight: 400;
        }

        .button21 {
            background: var(--button-button-background-primary-default);
            border-radius: 5px;
            padding: 0 16px;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            height: 40px;
            text-decoration: none;
            width: 40%; /* Full width button for better mobile touch */
            transition: background 0.3s;
        }

            .button21:hover {
                background: #156e46;
            }

        .text7 {
            color: var(--text-text-oncolor-primary);
            text-align: center;
            font-size: 16px;
            line-height: 24px;
            font-weight: 400;
            font-family: 'regularFont';
        }

        /* --- Cards & Grid --- */
        /* We use Bootstrap row/col, but we add h-100 to ensure equal height cards */

        .news-item {
            display: flex;
            flex-direction: column; /* Key for vertical alignment */
            background: #ffffff;
            border-radius: 16px;
            border: 1px solid var(--border-border-neutral-primary);
            padding: 16px;
            gap: 16px;
            height: 100%; /* Stretch to fill column height */
            transition: transform 0.2s, box-shadow 0.2s;
            position: relative;
            overflow: hidden;
        }

            .news-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
                border-color: #1b8354;
            }

        /* Image Wrapper - Fixed aspect ratio to prevent breaking */
        .news-item__image {
            position: relative;
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
            /* Fixed height for consistency, removed vh which was problematic */
            height: 220px;
            flex-shrink: 0;
            margin-bottom: 8px;
        }

            .news-item__image img {
                width: 100%;
                height: 100%;
                object-fit: cover; /* Ensures image fills box without distortion */
                border-radius: 8px;
                transition: transform 0.5s ease-in-out;
            }

        .news-item:hover .news-item__image img {
            transform: scale(1.05);
        }

        /* Content Area - Pushes button down */
        .news-item__caption {
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex-grow: 1; /* Takes up all available vertical space */
            justify-content: flex-start;
        }

        .news-item__title {
            line-height: 1.6;
            font-family: boldFont;
            font-size: 16px; /* Slightly larger for readability */
            color: #000000;
            font-weight: 600;
            margin: 0;
            /* Removed fixed height (40px) so long text can wrap correctly */
            display: -webkit-box;
            -webkit-line-clamp: 3; /* Optional: Limits to 3 lines, remove to show all */
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .actionsbtn {
            margin-top: auto;
            display: flex;
            justify-content: flex-end;
            width: 100%;
        }

        /* --- Video Specifics --- */
        .video-thumbnail-container {
            aspect-ratio: 16/9;
            cursor: pointer;
            position: relative;
        }

        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.9);
            color: #1B8354;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            z-index: 2;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            pointer-events: none;
        }

        .video-thumbnail-container:hover .play-icon {
            background-color: #1B8354;
            color: #fff;
            transform: translate(-50%, -50%) scale(1.1);
        }

        /* --- Modal --- */
        .video-close-btn {
            position: absolute;
            top: 15px;
            right: 15px; /* RTL positioning */
            z-index: 1055;
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s;
            border: none;
        }

            .video-close-btn:hover {
                background: #fff;
                color: #000;
            }

        .fa, .far, .fas {
            font-family: "Font Awesome 5 Free" !important;
        }
         .breadcrumb {
     display: flex;
     align-items: center;
     flex-wrap: wrap;
     gap: 8px;
     font-size: 14px;
     color: #333;
     padding: 8px 12px;
     background: #f3fcf6 !important;
     padding-right: 5%;
 }

 hr {
     margin: 0px !important;
     color: #f3fcf6 !important;
     border: 0;
     border-top: var(--bs-border-width) solid;
     opacity: .25;
     /* background: #f3fcf6; */
 }
 .btn-ssp-style {
    padding: 10px 24px;
    background-color: transparent;
    color: #1b8354;
    border: 1px solid #1b8354;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
    font-family: inherit;
}
  .fa, .far, .fas {
    font-family: "Font Awesome 5 Free" !important;
}
 .btn-ssp-style:hover {
    background-color: #1b8354;
    color: #FFFFFF;
}

/* --- mediacenter-videos.aspx --- */
.fa, .far, .fas {
            font-family: "Font Awesome 5 Free" !important;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 14px;
            color: #333;
            padding: 8px 12px;
            background: #f3fcf6 !important;
            padding-right: 5%;
        }

        hr {
            margin: 0px !important;
            color: #f3fcf6 !important;
            border: 0;
            border-top: var(--bs-border-width) solid;
            opacity: .25;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }

        .video-grid > * {
            min-width: 0;
            overflow: hidden;
        }

        @media (max-width: 992px) {
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .video-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .news-item {
                width: 100%;
            }

            #searchInput {
                max-width: 100%;
            }
        }

        .news-item {
            display: flex;
            flex-direction: column;
            background: #fff;
            border-radius: 10px;
            border: 1px solid #d2d6db;
            overflow: hidden;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            cursor: pointer;
            box-sizing: border-box;
            min-width: 0;
            max-width: 100%;
        }

        .news-item * {
            box-sizing: border-box;
            max-width: 100%;
        }

        .news-item__image,
        .video-thumbnail-container {
            position: relative;
            width: 100%;
            border-radius: 0.75rem;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            aspect-ratio: 16/9;
            flex-shrink: 0;
        }

        .news-item__image {
            margin: 0;
        }

        .video-thumbnail-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }

        .news-item img,
        .video-thumb-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .video-thumb-img {
            transition: transform 0.5s ease;
        }

        .video-thumbnail-container:hover .video-thumb-img {
            transform: scale(1.05);
        }

        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.9);
            color: #1B8354;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            z-index: 2;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            pointer-events: none;
        }

        .video-thumbnail-container:hover .play-icon {
            background-color: #1B8354;
            color: #fff;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .newsCaption-info {
            text-align: start;
            padding: 12px;
            overflow: hidden;
        }

        .newsCaption-content {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 5px;
            line-height: 1.4;
            color: #333;
            transition: color 0.3s;
            overflow-wrap: break-word;
            word-break: break-word;
            hyphens: auto;
        }

        .video-close-btn {
            position: absolute;
            top: 15px;
            left: 15px;
            right: 20px;
            z-index: 1055;
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s;
            border: 1px solid rgba(255,255,255,0.5);
        }

        .video-close-btn:hover {
            background: #fff;
            color: #000;
        }

        #searchInput {
            max-width: 350px;
            width: 100%;
            margin-bottom: 25px;
        }

        .pagination {
            justify-content: center !important;
            flex-wrap: wrap;
            gap: 6px;
        }

        .pagination li {
            list-style: none;
        }

        .pagination .page-link {
            border: none;
            background: transparent;
            color: #074d31;
            font-size: 1rem;
            padding: 6px 12px;
            border-radius: 6px;
            transition: 0.2s;
        }

        .pagination .page-link:hover {
            background: #f3f4f6;
        }

        .pagination .page-item:hover {
            background: #f3f4f6;
        }

        .pagination .page-link:active {
            background: #f3f4f6 !important;
        }

        .pagination .page-link:focus {
            outline: 2px solid #f3f4f6;
            border-radius: 6px;
        }

        .page-item:hover {
            background-color: #f3f4f6;
        }

        .pagination li.current a, .pagination li:hover a, #Paging li#PagingSelf a, #Paging li:hover a {
            font-family: boldFont;
            background-color: #f3f4f6 !important;
            color: #000 !important;
            border-radius: 6px;
        }

        .active > .page-link, .page-link.active {
            z-index: 3;
            color: var(--bs-pagination-active-color);
            background-color: #f3f4f600 !important;
            border-color: #f3f4f6;
        }

        .disabled > .page-link, .page-link.disabled {
            color: var(--bs-pagination-disabled-color);
            pointer-events: none;
            background-color: var(--bs-pagination-disabled-bg);
            border-color: var(--bs-pagination-disabled-border-color);
        }

        .page-item:not(:first-child) .page-link {
            margin-right: calc(-1 * var(--bs-border-width));
        }

        .page-item:first-child .page-link {
            border-top-right-radius: var(--bs-pagination-border-radius);
            border-bottom-right-radius: var(--bs-pagination-border-radius);
        }

        .page-item:last-child .page-link {
            border-top-left-radius: var(--bs-pagination-border-radius);
            border-bottom-left-radius: var(--bs-pagination-border-radius);
        }

        .pagination .active .page-link {
            border-bottom: 3px solid #0a7a4a;
            color: #0a7a4a;
            font-weight: bold;
        }

        .pagination .arrow {
            font-size: 1.2rem;
            padding: 4px 10px;
        }

        .pagination .ellipsis {
            padding: 6px 10px;
            color: #777;
        }

        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 99999;
        }

        .spinner {
            width: 60px;
            height: 60px;
            border: 6px solid #d2d6db;
            border-top-color: #074d31;
            border-radius: 50%;
            animation: spin 0.9s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

/* --- mediacenter-videos-en.aspx --- */
.news-item__image {
            position: relative;
            border-radius: 0.75rem;
            overflow: hidden;
            margin-bottom: 0.4rem;
            margin-top: 20px !important;
            max-width: 100%;
        }
        .fa, .far, .fas {
            font-family: "Font Awesome 5 Free" !important;
        }
        .row > [class*="col-"] {
            min-width: 0;
            overflow: hidden;
        }
        .video-thumb-img {
            display: block;
        }

/* --- mediacenter-videos-en.aspx (block 2) --- */
/* --- 1. REPLICATED STYLES FROM AUDIT PAGE --- */
        .video-thumbnail-container {
            position: relative;
            width: 100%;
            max-width: 100%;
            border-radius: 0.75rem;
            overflow: hidden;
            margin-bottom: 15px;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            aspect-ratio: 16/9;
        }
        
        .video-thumbnail-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        /* The Play Icon Overlay */
        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.9);
            color: #1B8354; /* SSP Green */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            z-index: 2;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            pointer-events: none; /* Let clicks pass through to container */
        }
        
        /* Hover effect for the play button */
        .video-thumbnail-container:hover .play-icon {
            background-color: #1B8354;
            color: #fff;
            transform: translate(-50%, -50%) scale(1.1);
        }
        /* Modal Close Button Specifics */
        .video-close-btn {
            position: absolute;
            top: 15px;
            right: 15px; /* RTL positioning */
            z-index: 1055;
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s;
            border: 1px solid rgba(255,255,255,0.5);
        }
        .video-close-btn:hover {
            background: #fff;
            color: #000;
        }
        /* Image Styling */
        .video-thumb-img {
            width: 100%;
            max-width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .video-thumbnail-container:hover .video-thumb-img {
            transform: scale(1.05);
        }
        /* Caption Styling */
        .newsCaption-info {
            padding: 0 5px;
        }
        
        .newsCaption-content {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 5px;
            line-height: 1.4;
            color: #333;
            transition: color 0.3s;
            overflow-wrap: break-word;
            word-break: break-word;
        }
        
        .video-thumbnail-container:hover + .newsCaption-info .newsCaption-content {
            color: #1B8354;
        }
        /* RTL specific adjustments */
        .video-close-btn {
            right: 20px;
            left: auto;
        }
        .row > [class*="col-"] {
            min-width: 0;
        }

/* --- mediacenter-News.aspx --- */
        .section-title {
            font-size: calc(1.75rem + 0.8vw);
            color: #161616;
            text-align: right !important;
            margin-bottom: 0.5rem;
        }
        .clr-light {
            color: #161616 !important;
        }
        .articles-and-news-section {
            padding: var(--global-spacing-5xl, 40px) var(--global-spacing-8xl, 80px);
            display: flex;
            flex-direction: row;
            gap: var(--global-spacing-4xl, 32px);
            align-items: center;
            justify-content: center;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
            width: 100%;
        }
        .section {
            display: flex;
            flex-direction: column;
            gap: var(--global-spacing-4xl, 32px);
            align-items: flex-end;
            justify-content: flex-start;
            flex: 1;
            max-width: 1280px;
            width: 100%;
            position: relative;
        }
        .content4 {
            display: flex;
            flex-direction: column;
            gap: var(--global-spacing-3xl, 24px);
            align-items: flex-end;
            justify-content: flex-start;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
            width: 100%;
        }
        .title {
            display: flex;
            flex-direction: row;
            gap: var(--global-spacing-4xl, 32px);
            align-items: flex-start;
            justify-content: space-between; /* Changed to space-between to separate button and title better */
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
            width: 100%;
        }
        .button {
            border-radius: var(--radius-radius-sm, 4px);
            border-style: solid;
            border-color: var(--border-border-neutral-primary, #d2d6db);
            border-width: 1px;
            padding: var(--global-spacing-none, 0px) var(--button-buttons-lg-padding, 16px);
            display: flex;
            flex-direction: row;
            gap: var(--button-buttons-lg-gap, 4px);
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            height: 40px;
            min-height: 40px;
            max-height: 40px;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }
        .text-wrapper {
            display: flex;
            flex-direction: row;
            gap: 0px;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
        }
        .text6 {
            color: var(--text-text-default, #161616);
            text-align: left;
            font-family: boldFont;
            font-size: var(--text-md-medium-font-size, 16px);
            line-height: var(--text-md-medium-line-height, 24px);
            font-weight: var(--text-md-medium-font-weight, 400);
            position: relative;
        }
        .div3 {
            color: var(--text-text-display, #1f2a37);
            text-align: right;
            font-family: boldFont;
            font-size: var(--display-sm-bold-font-size, 30px);
            line-height: var(--display-sm-bold-line-height, 38px);
            font-weight: var(--display-sm-bold-font-weight, 700);
            position: relative;
            /* Responsive Fix: Removed fixed width 1151px, set to 100% with max-width */
            width: 100%;
            max-width: 100%;
            white-space: normal;
        }
        .cards {
            display: flex;
            flex-direction: row;
            gap: var(--global-spacing-xl, 16px);
            align-items: center;
            justify-content: center;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
            direction: rtl;
            height: auto;
            align-items: flex-start;
        }
        .card {
            background: var(--background-background-card, #ffffff);
            border-radius: var(--radius-lg, 16px);
            border-style: solid;
            border-color: var(--border-border-neutral-primary, #d2d6db);
            border-width: 1px;
            padding: var(--global-spacing-xl, 16px);
            display: table;
            flex-direction: column;
            gap: var(--card-card-lg-gap, 24px);
            align-items: flex-end;
            justify-content: flex-start;
            flex: 1;
            position: relative;
            display: grid;
            height: auto;
        }
        .image {
            border-radius: var(--radius-md, 8px);
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
            object-fit: cover;
            width: 100%;
        }
        .content5 {
            display: flex;
            flex-direction: column;
            gap: var(--global-spacing-md, 8px);
            align-items: flex-end;
            justify-content: center;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
        }
        .div4 {
            color: var(--text-text-display, #1f2a37);
            text-align: right;
            font-family: boldFont;
            font-size: 14px;
            line-height: 20px;
            font-weight: 700;
            position: relative;
            align-self: stretch;
            height: 40px;
        }
        .actions3 {
            display: flex;
            flex-direction: row;
            gap: var(--global-spacing-xl, 16px);
            align-items: center;
            justify-content: flex-end;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
        }
        .button2 {
            background: var(--button-button-background-primary-default, #1b8354);
            border-radius: var(--radius-radius-sm, 4px);
            padding: var(--global-spacing-none, 0px) var(--button-buttons-lg-padding, 16px) var(--global-spacing-none, 0px) var(--button-buttons-lg-padding, 16px);
            display: flex;
            flex-direction: row;
            gap: var(--button-buttons-lg-gap, 4px);
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            height: 40px;
            min-height: 40px;
            max-height: 40px;
            position: relative;
            overflow: hidden;
        }
        .text-wrapper {
            display: flex;
            flex-direction: row;
            gap: 0px;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
        }
        .text7 {
            color: var(--text-text-oncolor-primary, #ffffff);
            text-align: left;
            font-family: boldFont;
            font-size: 16px;
            line-height: 24px;
            font-weight: 400;
            position: relative;
        }
        /* News Item Styles */
        .news-item {
            display: grid;
            flex-direction: column;
            border-radius: var(--radius-lg, 16px);
            border-style: solid;
            border-color: var(--border-border-neutral-primary, #d2d6db);
            border-width: 1px;
            padding: var(--global-spacing-xl, 16px);
            gap: 15px;
            height: 100%;
            box-sizing: border-box;
        }
        .news-item__title {
            line-height: 1.6;
            font-family: boldFont;
            font-size: 1.1rem;
            color: #000000;
            margin-inline: 0;
            transition: color 0.2s ease-in-out;
            text-align: right;
            font-weight: 500;
            display: -webkit-box;
            -webkit-line-clamp: 3; /* Limit to 3 lines */
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 3.2em; /* Ensure consistent height */
        }
        .news-item__image::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(57, 125, 201, 0.15) 40.83%, #91b6bb 100%);
            border-radius: 0.75rem;
            pointer-events: none;
        }
        .news-item__image {
            position: relative;
            width: 100%;
        }
        .news-item__image > img {
            width: 100%;
            height: 210px !important; /* Fixed height for consistency */
            object-fit: cover;
            border-radius: 0.75rem;
            transition: transform 0.5s ease-in-out;
        }
        .button21 {
            background: var(--button-button-background-primary-default, #1b8354);
            border-radius: 5px !important;
            padding: 10px 16px !important; /* Adjusted padding */
            display: flex !important;
            flex-direction: row;
            gap: 4px !important;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            height: 40px !important;
            min-height: 40px;
            max-height: 40px;
            position: relative;
            overflow: hidden;
            width: fit-content;
        }
        .actionsbtn {
            display: flex;
            flex-direction: row-reverse;
            gap: var(--global-spacing-xl, 16px);
            align-items: center;
            justify-content: flex-end; /* Align button to the right (end) in RTL context */
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
            width: 100%;
        }
        /* Responsive Media Queries */
        @media (max-width: 991px) {
            .articles-and-news-section {
                padding: 40px 20px;
            }
            
            .news-item__title {
                font-size: 1rem;
            }
        }
        @media (max-width: 768px) {
            .articles-and-news-section {
                padding: 20px 15px; /* Reduced padding for mobile */
            }
            .title {
                flex-direction: column-reverse; /* Stack button on top of title on mobile */
                align-items: flex-end;
                gap: 15px;
            }
            
            .button {
                width: 100%; /* Full width button on mobile */
                justify-content: center;
            }
            .div3 {
                width: 100% !important;
                font-size: 1.5rem; /* Smaller font for title */
                line-height: 1.3;
            }
            .news-item__image > img {
                height: 180px !important; /* Reduced image height for mobile */
            }
            .button21 {
                width: 100%; /* Full width button for easier tapping */
                justify-content: center;
            }
            
            .actionsbtn {
                justify-content: center;
            }
        }

                            .breadcrumb {
    direction: rtl;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: #333;
    padding: 8px 12px;
    background: #f3fcf6 !important;
    padding-right: 5%;
}

hr {
    margin: 0px !important;
    color: #f3fcf6 !important;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
    /* background: #f3fcf6; */
}

/* --- mediacenter-News.aspx (block 2) --- */
.section-title-text {
    color: #166a45ba;
    text-align: right;
    font-family: boldFont;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    position: relative;
    flex: 1;
    min-width: 200px;
    margin-bottom: 0;
}
            .actionsArticlesbtn {
    display: flex;
    gap: var(--global-spacing-xl, 16px);
    align-items: center;
    justify-content: flex-end; /* Align button to the right (end) in RTL context */
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    width: 100%;
}

/* --- mediacenter-News-en.aspx --- */
        .section-title {
            font-size: calc(1.75rem + 0.8vw);
            color: #161616;
            margin-bottom: 0.5rem;
        }
        .clr-light {
            color: #161616 !important;
        }
        .articles-and-news-section {
            padding: var(--global-spacing-5xl, 40px) var(--global-spacing-8xl, 80px);
            display: flex;
            flex-direction: row;
            gap: var(--global-spacing-4xl, 32px);
            align-items: center;
            justify-content: center;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
            width: 100%;
        }
        .section {
            display: flex;
            flex-direction: column;
            gap: var(--global-spacing-4xl, 32px);
            align-items: flex-end;
            justify-content: flex-start;
            flex: 1;
            max-width: 1280px;
            width: 100%;
            position: relative;
        }
        .content4 {
            display: flex;
            flex-direction: column;
            gap: var(--global-spacing-3xl, 24px);
            align-items: flex-end;
            justify-content: flex-start;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
            width: 100%;
        }
        .title {
            display: flex;
            flex-direction: row;
            gap: var(--global-spacing-4xl, 32px);
            align-items: flex-start;
            justify-content: space-between; /* Changed to space-between to separate button and title better */
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
            width: 100%;
        }
        .button {
            border-radius: var(--radius-radius-sm, 4px);
            border-style: solid;
            border-color: var(--border-border-neutral-primary, #d2d6db);
            border-width: 1px;
            padding: var(--global-spacing-none, 0px) var(--button-buttons-lg-padding, 16px);
            display: flex;
            flex-direction: row;
            gap: var(--button-buttons-lg-gap, 4px);
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            height: 40px;
            min-height: 40px;
            max-height: 40px;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }
        .text-wrapper {
            display: flex;
            flex-direction: row;
            gap: 0px;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
        }
        .text6 {
            color: var(--text-text-default, #161616);
            text-align: left;
            font-family: boldFont;
            font-size: var(--text-md-medium-font-size, 16px);
            line-height: var(--text-md-medium-line-height, 24px);
            font-weight: var(--text-md-medium-font-weight, 400);
            position: relative;
        }
        .div3 {
            color: var(--text-text-display, #1f2a37);
            font-family: boldFont;
            font-size: var(--display-sm-bold-font-size, 30px);
            line-height: var(--display-sm-bold-line-height, 38px);
            font-weight: var(--display-sm-bold-font-weight, 700);
            position: relative;
            /* Responsive Fix: Removed fixed width 1151px, set to 100% with max-width */
            width: 100%;
            max-width: 100%;
            white-space: normal;
        }
        .cards {
            display: flex;
            flex-direction: row;
            gap: var(--global-spacing-xl, 16px);
            align-items: center;
            justify-content: center;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
            height: auto;
            align-items: flex-start;
        }
        .card {
            background: var(--background-background-card, #ffffff);
            border-radius: var(--radius-lg, 16px);
            border-style: solid;
            border-color: var(--border-border-neutral-primary, #d2d6db);
            border-width: 1px;
            padding: var(--global-spacing-xl, 16px);
            display: table;
            flex-direction: column;
            gap: var(--card-card-lg-gap, 24px);
            align-items: flex-end;
            justify-content: flex-start;
            flex: 1;
            position: relative;
            display: grid;
            height: auto;
        }
        .image {
            border-radius: var(--radius-md, 8px);
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
            object-fit: cover;
            width: 100%;
        }
        .content5 {
            display: flex;
            flex-direction: column;
            gap: var(--global-spacing-md, 8px);
            align-items: flex-end;
            justify-content: center;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
        }
        .div4 {
            color: var(--text-text-display, #1f2a37);
            font-family: boldFont;
            font-size: 14px;
            line-height: 20px;
            font-weight: 700;
            position: relative;
            align-self: stretch;
            height: 40px;
        }
        .actions3 {
            display: flex;
            flex-direction: row;
            gap: var(--global-spacing-xl, 16px);
            align-items: center;
            justify-content: flex-end;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
        }
        .button2 {
            background: var(--button-button-background-primary-default, #1b8354);
            border-radius: var(--radius-radius-sm, 4px);
            padding: var(--global-spacing-none, 0px) var(--button-buttons-lg-padding, 16px) var(--global-spacing-none, 0px) var(--button-buttons-lg-padding, 16px);
            display: flex;
            flex-direction: row;
            gap: var(--button-buttons-lg-gap, 4px);
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            height: 40px;
            min-height: 40px;
            max-height: 40px;
            position: relative;
            overflow: hidden;
        }
        .text-wrapper {
            display: flex;
            flex-direction: row;
            gap: 0px;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
        }
        .text7 {
            color: var(--text-text-oncolor-primary, #ffffff);
            text-align: left;
            font-family: boldFont;
            font-size: 16px;
            line-height: 24px;
            font-weight: 400;
            position: relative;
        }
        /* News Item Styles */
        .news-item {
            display: grid;
            flex-direction: column;
            border-radius: var(--radius-lg, 16px);
            border-style: solid;
            border-color: var(--border-border-neutral-primary, #d2d6db);
            border-width: 1px;
            padding: var(--global-spacing-xl, 16px);
            gap: 15px;
            height: 100%;
            box-sizing: border-box;
        }
        .news-item__title {
            line-height: 1.6;
            font-family: boldFont;
            font-size: 1.1rem;
            color: #000000;
            margin-inline: 0;
            transition: color 0.2s ease-in-out;
            font-weight: 500;
            display: -webkit-box;
            -webkit-line-clamp: 3; /* Limit to 3 lines */
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 3.2em; /* Ensure consistent height */
        }
        .news-item__image::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(57, 125, 201, 0.15) 40.83%, #91b6bb 100%);
            border-radius: 0.75rem;
            pointer-events: none;
        }
        .news-item__image {
            position: relative;
            width: 100%;
        }
        .news-item__image > img {
            width: 100%;
            height: 210px !important; /* Fixed height for consistency */
            object-fit: cover;
            border-radius: 0.75rem;
            transition: transform 0.5s ease-in-out;
        }
        .button21 {
            background: var(--button-button-background-primary-default, #1b8354);
            border-radius: 5px !important;
            padding: 10px 16px !important; /* Adjusted padding */
            display: flex !important;
            flex-direction: row;
            gap: 4px !important;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            height: 40px !important;
            min-height: 40px;
            max-height: 40px;
            position: relative;
            overflow: hidden;
            width: fit-content;
        }
        .actionsbtn {
            display: flex;
            flex-direction: row-reverse;
            gap: var(--global-spacing-xl, 16px);
            align-items: center;
            justify-content: flex-end; /* Align button to the right (end) in RTL context */
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
            width: 100%;
        }
        /* Responsive Media Queries */
        @media (max-width: 991px) {
            .articles-and-news-section {
                padding: 40px 20px;
            }
            
            .news-item__title {
                font-size: 1rem;
            }
        }
        @media (max-width: 768px) {
            .articles-and-news-section {
                padding: 20px 15px; /* Reduced padding for mobile */
            }
            .title {
                flex-direction: column-reverse; /* Stack button on top of title on mobile */
                align-items: flex-end;
                gap: 15px;
            }
            
            .button {
                width: 100%; /* Full width button on mobile */
                justify-content: center;
            }
            .div3 {
                width: 100% !important;
                font-size: 1.5rem; /* Smaller font for title */
                line-height: 1.3;
            }
            .news-item__image > img {
                height: 180px !important; /* Reduced image height for mobile */
            }
            .button21 {
                width: 100%; /* Full width button for easier tapping */
                justify-content: center;
            }
            
            .actionsbtn {
                justify-content: center;
            }
        }

/* --- mediacenter-awards.aspx --- */
        .section-title {
            font-size: calc(1.75rem + 0.8vw);
            color: #161616;
            text-align: right !important;
            margin-bottom: 0.5rem;
        }

        .clr-light {
            color: #161616 !important;
        }

        .articles-and-news-section {
            padding: var(--global-spacing-5xl, 40px) var(--global-spacing-8xl, 80px) var(--global-spacing-5xl, 40px) var(--global-spacing-8xl, 80px);
            display: flex;
            flex-direction: row;
            gap: var(--global-spacing-4xl, 32px);
            align-items: center;
            justify-content: center;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .section {
            display: flex;
            flex-direction: column;
            gap: var(--global-spacing-4xl, 32px);
            align-items: flex-end;
            justify-content: flex-start;
            flex: 1;
            max-width: 1280px;
            position: relative;
        }

        .content4 {
            display: flex;
            flex-direction: column;
            gap: var(--global-spacing-3xl, 24px);
            align-items: flex-end;
            justify-content: flex-start;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
        }

        .title {
            display: flex;
            flex-direction: row;
            gap: var(--global-spacing-4xl, 32px);
            align-items: flex-start;
            justify-content: flex-end;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
        }

        .button {
            border-radius: var(--radius-radius-sm, 4px);
            border-style: solid;
            border-color: var(--border-border-neutral-primary, #d2d6db);
            border-width: 1px;
            padding: var(--global-spacing-none, 0px) var(--button-buttons-lg-padding, 16px) var(--global-spacing-none, 0px) var(--button-buttons-lg-padding, 16px);
            display: flex;
            flex-direction: row;
            gap: var(--button-buttons-lg-gap, 4px);
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            height: 40px;
            min-height: 40px;
            max-height: 40px;
            position: relative;
            overflow: hidden;
        }

        .text-wrapper {
            display: flex;
            flex-direction: row;
            gap: 0px;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
        }

        .text6 {
            color: var(--text-text-default, #161616);
            text-align: left;
            font-family: boldFont;
            font-size: var(--text-md-medium-font-size, 16px);
            line-height: var(--text-md-medium-line-height, 24px);
            font-weight: var(--text-md-medium-font-weight, 400);
            position: relative;
        }

        .div3 {
            color: var(--text-text-default, #161616);
            text-align: right;
            font-family: boldFont;
            font-size: var(--display-sm-bold-font-size, 30px);
            line-height: var(--display-sm-bold-line-height, 38px);
            font-weight: var(--display-sm-bold-font-weight, 700);
            position: relative;
            align-self: stretch;
            width: 100%;
            max-width: 1151px;
        }

        .cards {
            display: flex;
            flex-direction: row;
            gap: var(--global-spacing-xl, 16px);
            align-items: center;
            justify-content: center;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
            direction: rtl;
            height: auto;
            align-items: flex-start;
        }

        .card {
            background: var(--background-background-card, #ffffff);
            border-radius: var(--radius-lg, 16px);
            border-style: solid;
            border-color: var(--border-border-neutral-primary, #d2d6db);
            border-width: 1px;
            padding: var(--global-spacing-xl, 16px);
            display: table;
            flex-direction: column;
            gap: var(--card-card-lg-gap, 24px);
            align-items: flex-end;
            justify-content: flex-start;
            flex: 1;
            position: relative;
            display: grid;
            height: auto;
        }

        .image {
            border-radius: var(--radius-md, 8px);
            align-self: stretch;
            flex-shrink: 0;
            height: 25vh !important;
            position: relative;
            object-fit: cover;
        }

        .content5 {
            display: flex;
            flex-direction: column;
            gap: var(--global-spacing-md, 8px);
            align-items: flex-end;
            justify-content: center;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
        }

        .div4 {
            color: var(--text-text-display, #1f2a37);
            text-align: right;
            font-family: boldFont;
            font-size: 14px;
            line-height: 20px;
            font-weight: 700;
            position: relative;
            align-self: stretch;
            height: 40px;
        }

        .actions3 {
            display: flex;
            flex-direction: row;
            gap: var(--global-spacing-xl, 16px);
            align-items: center;
            justify-content: flex-end;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
        }

        .button2 {
            background: var(--button-button-background-primary-default, #1b8354);
            border-radius: var(--radius-radius-sm, 4px);
            padding: var(--global-spacing-none, 0px) var(--button-buttons-lg-padding, 16px) var(--global-spacing-none, 0px) var(--button-buttons-lg-padding, 16px);
            display: flex;
            flex-direction: row;
            gap: var(--button-buttons-lg-gap, 4px);
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            height: 40px;
            min-height: 40px;
            max-height: 40px;
            position: relative;
            overflow: hidden;
        }

        .text-wrapper {
            display: flex;
            flex-direction: row;
            gap: 0px;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
        }

        .text7 {
            color: var(--text-text-oncolor-primary, #ffffff);
            text-align: left;
            font-family: boldFont;
            font-size: 16px;
            line-height: 24px;
            font-weight: 400;
            position: relative;
        }

        @media (min-width: 768px) {
            .image {
                border-radius: var(--radius-md, 8px);
                align-self: stretch;
                flex-shrink: 0;
                /* height: 250px; */
                position: relative;
                object-fit: cover;
                height: 15vh !important;
                width: 100%;
            }
        }
    
        .news-item {
            display: grid;
            flex-direction: column;
            border-radius: var(--radius-lg, 16px);
            border-style: solid;
            border-color: var(--border-border-neutral-primary, #d2d6db);
            border-width: 1px;
            padding: var(--global-spacing-xl, 16px);
            gap: 10px;
        }
        .news-item__title {
            line-height: 1.8;
            font-family: boldFont;
            font-size: 1.25rem;
            color: #000000;
            margin-inline: 0;
            transition: color 0.2s ease-in-out;
            text-align: right;
            font-size: 14px;
            font-weight: 500;
            /* gap: 20px; */
        }
        .news-item__image::after {
                content: "";
                position: absolute;
                inset: 0;
                background-image: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(57, 125, 201, 0.15) 40.83%, #91b6bb 100%);
                border-radius: 0.75rem;
            }
        .news-item__image > img {
            width: 100%;
            height: 13.125rem !important;
            object-fit: cover;
            border-radius: 0.75rem;
            transition: transform 0.5s ease-in-out;
        }
        .button21 {
                background: var(--button-button-background-primary-default, #1b8354);
                border-radius: 5px !important;
                padding: 16px !important;
                display: flex !important;
                flex-direction: row;
                gap: 4px !important;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
                height: 35px !important;
                min-height: 40px;
                max-height: 40px;
                position: relative;
                overflow: hidden;
            }
        .actionsbtn {
            display: flex;
            flex-direction: row-reverse;
            gap: var(--global-spacing-xl, 16px);
            align-items: center;
            justify-content: flex-end;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
        }
                    .breadcrumb {
    direction: rtl;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: #333;
    padding: 8px 12px;
    background: #f3fcf6 !important;
    padding-right: 5%;
}

hr {
    margin: 0px !important;
    color: #f3fcf6 !important;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
    /* background: #f3fcf6; */
}

/* --- mediacenter-awards-en.aspx --- */
        .section-title {
            font-size: calc(1.75rem + 0.8vw);
            color: #161616;
            margin-bottom: 0.5rem;
        }

        .clr-light {
            color: #161616 !important;
        }

        .articles-and-news-section {
            padding: var(--global-spacing-5xl, 40px) var(--global-spacing-8xl, 80px) var(--global-spacing-5xl, 40px) var(--global-spacing-8xl, 80px);
            display: flex;
            flex-direction: row;
            gap: var(--global-spacing-4xl, 32px);
            align-items: center;
            justify-content: center;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .section {
            display: flex;
            flex-direction: column;
            gap: var(--global-spacing-4xl, 32px);
            align-items: flex-end;
            justify-content: flex-start;
            flex: 1;
            max-width: 1280px;
            position: relative;
        }

        .content4 {
            display: flex;
            flex-direction: column;
            gap: var(--global-spacing-3xl, 24px);
            align-items: flex-end;
            justify-content: flex-start;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
        }

        .title {
            display: flex;
            flex-direction: row;
            gap: var(--global-spacing-4xl, 32px);
            align-items: flex-start;
            justify-content: flex-end;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
        }

        .button {
            border-radius: var(--radius-radius-sm, 4px);
            border-style: solid;
            border-color: var(--border-border-neutral-primary, #d2d6db);
            border-width: 1px;
            padding: var(--global-spacing-none, 0px) var(--button-buttons-lg-padding, 16px) var(--global-spacing-none, 0px) var(--button-buttons-lg-padding, 16px);
            display: flex;
            flex-direction: row;
            gap: var(--button-buttons-lg-gap, 4px);
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            height: 40px;
            min-height: 40px;
            max-height: 40px;
            position: relative;
            overflow: hidden;
        }

        .text-wrapper {
            display: flex;
            flex-direction: row;
            gap: 0px;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
        }

        .text6 {
            color: var(--text-text-default, #161616);
            text-align: left;
            font-family: boldFont;
            font-size: var(--text-md-medium-font-size, 16px);
            line-height: var(--text-md-medium-line-height, 24px);
            font-weight: var(--text-md-medium-font-weight, 400);
            position: relative;
        }

        .div3 {
            color: var(--text-text-default, #161616);
            font-family: boldFont;
            font-size: var(--display-sm-bold-font-size, 30px);
            line-height: var(--display-sm-bold-line-height, 38px);
            font-weight: var(--display-sm-bold-font-weight, 700);
            position: relative;
            align-self: stretch;
            width: 100%;
            max-width: 1151px;
        }

        .cards {
            display: flex;
            flex-direction: row;
            gap: var(--global-spacing-xl, 16px);
            align-items: center;
            justify-content: center;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
            height: auto;
            align-items: flex-start;
        }

        .card {
            background: var(--background-background-card, #ffffff);
            border-radius: var(--radius-lg, 16px);
            border-style: solid;
            border-color: var(--border-border-neutral-primary, #d2d6db);
            border-width: 1px;
            padding: var(--global-spacing-xl, 16px);
            display: table;
            flex-direction: column;
            gap: var(--card-card-lg-gap, 24px);
            align-items: flex-end;
            justify-content: flex-start;
            flex: 1;
            position: relative;
            display: grid;
            height: auto;
        }

        .image {
            border-radius: var(--radius-md, 8px);
            align-self: stretch;
            flex-shrink: 0;
            height: 25vh !important;
            position: relative;
            object-fit: cover;
        }

        .content5 {
            display: flex;
            flex-direction: column;
            gap: var(--global-spacing-md, 8px);
            align-items: flex-end;
            justify-content: center;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
        }

        .div4 {
            color: var(--text-text-display, #1f2a37);
            font-family: boldFont;
            font-size: 14px;
            line-height: 20px;
            font-weight: 700;
            position: relative;
            align-self: stretch;
            height: 40px;
        }

        .actions3 {
            display: flex;
            flex-direction: row;
            gap: var(--global-spacing-xl, 16px);
            align-items: center;
            justify-content: flex-end;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
        }

        .button2 {
            background: var(--button-button-background-primary-default, #1b8354);
            border-radius: var(--radius-radius-sm, 4px);
            padding: var(--global-spacing-none, 0px) var(--button-buttons-lg-padding, 16px) var(--global-spacing-none, 0px) var(--button-buttons-lg-padding, 16px);
            display: flex;
            flex-direction: row;
            gap: var(--button-buttons-lg-gap, 4px);
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            height: 40px;
            min-height: 40px;
            max-height: 40px;
            position: relative;
            overflow: hidden;
        }

        .text-wrapper {
            display: flex;
            flex-direction: row;
            gap: 0px;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
        }

        .text7 {
            color: var(--text-text-oncolor-primary, #ffffff);
            text-align: left;
            font-family: boldFont;
            font-size: 16px;
            line-height: 24px;
            font-weight: 400;
            position: relative;
        }

        @media (min-width: 768px) {
            .image {
                border-radius: var(--radius-md, 8px);
                align-self: stretch;
                flex-shrink: 0;
                /* height: 250px; */
                position: relative;
                object-fit: cover;
                height: 15vh !important;
                width: 100%;
            }
        }
    
        .news-item {
            display: grid;
            flex-direction: column;
            border-radius: var(--radius-lg, 16px);
            border-style: solid;
            border-color: var(--border-border-neutral-primary, #d2d6db);
            border-width: 1px;
            padding: var(--global-spacing-xl, 16px);
            gap: 10px;
        }
        .news-item__title {
            line-height: 1.8;
            font-family: boldFont;
            font-size: 1.25rem;
            color: #000000;
            margin-inline: 0;
            transition: color 0.2s ease-in-out;
            font-size: 14px;
            font-weight: 500;
            /* gap: 20px; */
        }
        .news-item__image::after {
                content: "";
                position: absolute;
                inset: 0;
                background-image: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(57, 125, 201, 0.15) 40.83%, #91b6bb 100%);
                border-radius: 0.75rem;
            }
        .news-item__image > img {
            width: 100%;
            height: 13.125rem !important;
            object-fit: cover;
            border-radius: 0.75rem;
            transition: transform 0.5s ease-in-out;
        }
        .button21 {
                background: var(--button-button-background-primary-default, #1b8354);
                border-radius: 5px !important;
                padding: 16px !important;
                display: flex !important;
                flex-direction: row;
                gap: 4px !important;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
                height: 35px !important;
                min-height: 40px;
                max-height: 40px;
                position: relative;
                overflow: hidden;
            }
        .actionsbtn {
            display: flex;
            flex-direction: row-reverse;
            gap: var(--global-spacing-xl, 16px);
            align-items: center;
            justify-content: flex-end;
            align-self: stretch;
            flex-shrink: 0;
            position: relative;
        }

/* --- mediacenter-YearlyReport.aspx --- */
.news-item {
             display: flex;
             flex-direction: column; /* Key for vertical alignment */
             background: #ffffff;
             border-radius: 16px;
             border: 1px solid var(--border-border-neutral-primary);
             padding: 16px;
             gap: 16px;
             height: 100%; /* Stretch to fill column height */
             transition: transform 0.2s, box-shadow 0.2s;
             position: relative;
             overflow: hidden;
         }

        .news-item:hover {
             transform: translateY(-5px);
             box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
             border-color: #1b8354;
         }

         /* Image Wrapper - Fixed aspect ratio to prevent breaking */
         .news-item__image {
             position: relative;
             width: 100%;
             border-radius: 8px;
             overflow: hidden;
             /* Fixed height for consistency, removed vh which was problematic */
             height: 220px;
             flex-shrink: 0;
             margin-bottom: 8px;
         }

         .news-item__image img {
             width: 100%;
             height: 100%;
             object-fit: cover; /* Ensures image fills box without distortion */
             border-radius: 8px;
             transition: transform 0.5s ease-in-out;
         }

         .news-item:hover .news-item__image img {
             transform: scale(1.05);
         }

         /* Content Area - Pushes button down */
         .news-item__caption {
             display: flex;
             flex-direction: column;
             gap: 8px;
             flex-grow: 1; /* Takes up all available vertical space */
             justify-content: flex-start;
         }

         .news-item__title {
             line-height: 1.6;
             font-family: boldFont;
             font-size: 16px; /* Slightly larger for readability */
             color: #000000;
             text-align: right;
             font-weight: 600;
             margin: 0;
             /* Removed fixed height (40px) so long text can wrap correctly */
             display: -webkit-box;
             -webkit-line-clamp: 3; /* Optional: Limits to 3 lines, remove to show all */
             -webkit-box-orient: vertical;
             overflow: hidden;
         }
         .button21 {
                background: #1b8354;
                border-radius: 5px;
                padding: 0 16px;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                height: 40px;
                text-decoration: none;
                width: 40%;
                transition: background 0.3s;
            }
         .actionsbtn {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}
         .text7 {
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-family: 'regularFont';
}
         
                            .breadcrumb {
    direction: rtl;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: #333;
    padding: 8px 12px;
    background: #f3fcf6 !important;
    padding-right: 5%;
}

hr {
    margin: 0px !important;
    color: #f3fcf6 !important;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
    /* background: #f3fcf6; */
}

/* --- NewArticle.aspx --- */
.article-title {
            line-height: 1.5;
            font-size: calc(1rem + 1vw);
            color: #000000;
            margin-bottom: 2.5rem;
        }

        .article-image::before {
            content: "";
            position: absolute;
            top: 0;
            inset-inline-start: 0;
            background-color: var(--clr-secondary);
            width: calc(80% - 80px);
            height: calc(100% - 40px);
            border-radius: 0.75rem;
            opacity: 0.24;
            z-index: -1;
        }

        .article-image > img {
            width: 100%;
            background-color: #fff;
            border-radius: 0.75rem;
        }

        .article-image {
            position: relative;
            isolation: isolate;
            padding-top: 1.5rem;
            padding-inline-start: 1.5rem;
            margin-bottom: 3.125rem;
        }

            .article-image::before {
                content: "";
                position: absolute;
                top: 0;
                inset-inline-start: 0;
                background-color: var(--clr-secondary);
                width: calc(100% - 80px);
                height: calc(100% - 40px);
                border-radius: 0.75rem;
                opacity: 0.24;
                z-index: -1;
            }
        /* NEWS ARTICLE */
        .news-article-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            /* box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06); */
            border: solid 1px #edf2fa;
        }

        .news-article-card p {
            text-align: justify;
            margin-bottom: 14px;
            direction: rtl;
        }
            .breadcrumb {
    direction: rtl;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: #333;
    padding: 8px 12px;
    background: #f3fcf6 !important;
    padding-right: 5%;
}

hr {
    margin: 0px !important;
    color: #f3fcf6 !important;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
    /* background: #f3fcf6; */
}

.news-image[src*="logo-icon.svg"] {
    width: 100%;
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

/* --- NewArticle-en.aspx --- */
.article-title {
            line-height: 1.5;
            font-size: calc(1rem + 1vw);
            color: #000000;
            margin-bottom: 2.5rem;
        }
        .article-image::before {
            content: "";
            position: absolute;
            top: 0;
            inset-inline-start: 0;
            background-color: var(--clr-secondary);
            width: calc(80% - 80px);
            height: calc(100% - 40px);
            border-radius: 0.75rem;
            opacity: 0.24;
            z-index: -1;
        }
        .article-image > img {
                width: 100%;
                background-color: #fff;
                border-radius: 0.75rem;
            }
        .article-image {
            position: relative;
            isolation: isolate;
            padding-top: 1.5rem;
            padding-inline-start: 1.5rem;
            margin-bottom: 3.125rem;
        }
        .article-image::before {
            content: "";
            position: absolute;
            top: 0;
            inset-inline-start: 0;
            background-color: var(--clr-secondary);
            width: calc(100% - 80px);
            height: calc(100% - 40px);
            border-radius: 0.75rem;
            opacity: 0.24;
            z-index: -1;
        }

/* --- NewAward.aspx --- */
.article-title {
         line-height: 1.5;
         font-size: calc(1rem + 1vw);
         color: #000000;
         margin-bottom: 2.5rem;
     }
             /* AWARDS ARTICLE */
        .news-article-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            /* box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06); */
            border: solid 1px #edf2fa;
        }

        .news-image {
            width: 100%;
            border-radius: 12px;
            margin-bottom: 20px;
            height: 420px;
            object-fit: cover;
        }

        .news-article-card p {
            text-align: justify;
            margin-bottom: 14px;
            direction: rtl;
        }
            .breadcrumb {
    direction: rtl;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: #333;
    padding: 8px 12px;
    background: #f3fcf6 !important;
    padding-right: 5%;
}

hr {
    margin: 0px !important;
    color: #f3fcf6 !important;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
    /* background: #f3fcf6; */
}

/* --- NewAward-en.aspx --- */
.article-title {
         line-height: 1.5;
         font-size: calc(1rem + 1vw);
         color: #000000;
         margin-bottom: 2.5rem;
     }

