 .popup-overlay {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 20px;
        box-sizing: border-box;
        background-color: rgba(0, 0, 0, 0.65);
        justify-content: center;
        align-items: center;
        opacity: 0;
        transform: scale(0.96);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .popup-overlay.show {
        display: flex;
        opacity: 1;
        transform: scale(1);
    }

    .popup-content {
        position: relative;
        background-color: #002552;
        padding: 50px;
        border-radius: 30px;
        width:100%;
        max-width: 1210px;
        max-height: 90vh;
        overflow-y: auto;
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        box-sizing: border-box;
		/* Firefox */
		scrollbar-width: none;
		scrollbar-color: rgba(255,255,255,0.18) transparent;
    }
	
	/* Show slim scrollbar only on hover - Firefox */
	.popup-content:hover {
		scrollbar-width: thin;
	}

	/* Chrome, Edge, Safari */
	.popup-content::-webkit-scrollbar {
		width: 0px;
	}

	.popup-content:hover::-webkit-scrollbar {
		width: 6px;
	}

	.popup-content::-webkit-scrollbar-track {
		background: transparent;
	}

	.popup-content::-webkit-scrollbar-thumb {
		background: rgba(255, 255, 255, 0.18);
		border-radius: 20px;
	}

	.popup-content:hover::-webkit-scrollbar-thumb {
		background: rgba(255, 255, 255, 0.28);
	}

	.popup-content::-webkit-scrollbar-thumb:hover {
		background: rgba(255, 255, 255, 0.4);
	}
	
    .popup-column {
        display: flex !important;
        align-items: center;
        width: 100%;
    }

    .popup-column .popup-row {
        width: 100%;
    }

    .popup-row-profile {
        flex: 0 0 30%;
        max-width: 30%;
		
    }

    .popup-row-about {
        flex: 1;
        max-width: 100%;
    }

    .profile-header {
        display: flex !important;
        align-items: center !important;
        margin-bottom: 20px;
        color: white;
		border-right: 4px solid white;
    }

    .profile-image {
        width: 260px !important;
        height: 260px !important;
        border-radius: 10px;
        margin: 20px;
    }

    .profile-text h2 {
        font-size: 36px;
        font-weight: bold;
        line-height: 1.2;
        margin: 0 0 8px 0;
        color: white;
        word-break: break-word;
    }

    .profile-text h3 {
        font-size: 24px;
        font-weight: 500;
        margin: 0 0 6px 0;
        color: white;
        line-height: 1.4;
    }

    .profile-text h5 {
        font-size: 20px;
        font-weight: 500;
        margin: 0;
		margin-bottom: 25px;
        color: white;
        line-height: 1.4;
    }

    .about-section, .about-section-2 {
        margin-top: 0;
        text-align: left;
        color: white;
        /*border-left: 4px solid white;*/
        padding: 10px 0 10px 30px;
        height: 100%;
        box-sizing: border-box;
    }

    .about-section h2 {
        font-size: 36px;
        font-weight: bold;
        margin: 0 0 14px 0;
        color: white;
        line-height: 1.2;
    }

    .about-section p, .about-section-2 p {
        font-size: 16px;
        color: #fff;
        font-weight: 500;
        line-height: 1.8;
        margin: 0;
        word-break: break-word;
    }

    .view-profile-btn {
        margin-top: 30px;
        padding: 12px 24px;
        font-size: 16px;
        background-color: #fff;
        font-weight: 700;
        color: #002552;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .view-profile-btn:hover {
        background-color: #e6e6e6 !important;
		color: #002552 !important;
    }

    .popup-close {
        position: absolute;
        top: 18px;
        right: 20px;
        font-size: 30px;
        line-height: 1;
        color: #fff;
        cursor: pointer;
        z-index: 2;
    }

    

	/* For Videos */
	.custom-video-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 42px 28px;
	}

	.video-card {
		border: none;
		padding: 0;
	}

	.video-thumb {
		position: relative;
		display: block;
		overflow: hidden;
		width: 100%;
		aspect-ratio: 16 / 9;
		text-decoration: none;
	}

	.video-thumb img {
		width: 100%;
		height: 100%;
		border-radius: 10px 10px 0 0 !important;
		object-fit: cover;
		display: block;
		transition: transform 0.4s ease;
	}

	.video-card:hover .video-thumb img {
		transform: scale(1.05);
		transition: transform 0.3s;
	}

	.video-overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0) 0%,
		#002447 100%);

		z-index: 1;
	}

	.video-play-wrap {
		position: absolute;
		inset: 0;
		z-index: 2;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		color: #fff;
		font-weight: 700;
		font-size: 15px;
		text-align: center;
	}

	.video-play-button {
		width: 0;
		height: 0;
		border-top: 24px solid transparent;
		border-bottom: 24px solid transparent;
		border-left: 38px solid #fff;
		margin-bottom: 8px;
		filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
	}

	.e-fas-play {
		width: 44px;
		height: 44px;
		fill: #ffffff; /* makes it white */
	}

	.video-title {
		margin: 12px 0 4px !important;
		font-family: Inter;
		font-size: 28px;
		line-height: 1.1;
		font-weight: 700;
		color: #000;
	}

	.video-desc {
		margin: 0;
		font-size: 16px;
		line-height: 1.4;
		color: #000;
	}

	.pagination {
		margin-top: 45px;
		text-align: center;
	}
	

	.pagination .page-numbers {
		padding: 8px 12px;
		min-width: 2.5em;
		line-height: 2.25em;
		text-align: center;
		text-decoration: none;
		border-radius: .25rem;
		font-weight: 800;
		font-family: Inter !important;
		border: 1px solid #ddd;
		display: inline-block;
		text-decoration: none;
	}

	.pagination .current {
		background: #000;
		color: #fff;
	}
	#video-grid-wrapper.loading {
		opacity: 0.45;
		pointer-events: none;
		transition: opacity 0.25s ease;
	}
	.video-pagination-icon {
		font-size: 24px !important;
		font-weight: 800 !important;
		line-height: 1;
	}

/* Related Posts */
	.related-videos-slider-section {
		/*margin-top: 10px;*/
	}

	.related-videos-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 20px;
	}
	.related-videos-footer {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.related-videos-divider {
		margin-bottom: 10px;
	}

	.related-videos-divider .elementor-divider-separator {
		display: block;
		width: 100%;
		border-top: 2px solid #000;
		}
	.related-video-other-tools{
		text-align: right;
	}
	.back-to-videos-btn {
		display: inline-flex;
		align-items: center;
		gap: 10px;

		background: #002447;
		color: #ffffff;
		padding: 12px 20px;

		font-size: 16px;
		font-weight: 700;
		line-height: 1;
		text-decoration: none;

		border-radius: 50px;
		transition: all 0.25s ease;
		margin-bottom: 20px;
	}

	.back-to-videos-btn i {
		color: #ffffff;
		font-size: 16px;
		line-height: 1;
	}

	.back-to-videos-btn:hover {
		background: #003b73;
		color: #ffffff;
		text-decoration: none;
		transform: translateX(-3px);
	}
	.related-videos-header h3 {
		font-size: 28px;
		font-weight: 800;
		margin: 0;
	}

	.related-slider-arrows {
		display: flex;
		gap: 18px;
	}

	.related-slider-arrows button {
		width: 48px;
		height: 48px;
		border: none;
		background: #002447;
		color: #fff;
		border-radius: 50%;
		cursor: pointer;

		display: inline-flex;
		align-items: center;
		justify-content: center;

		padding: 0;
	}

	.related-slider-arrows button i {
		font-size: 22px;
		color: #fff;
		line-height: 1;
	}

	.related-videos-slider {
		display: flex;
		gap: 28px;
		overflow-x: auto;
		scroll-behavior: smooth;
		scrollbar-width: none;
	}

	.related-videos-slider::-webkit-scrollbar {
		display: none;
	}

	.related-video-slide {
		flex: 0 0 calc(33.333% - 19px);
	}

	.related-video-slide .video-thumb {
		position: relative;
		display: block;
		overflow: hidden;
		aspect-ratio: 16 / 9;
	}

	.related-video-slide .video-thumb img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.related-video-slide .video-overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 36, 71, 0.6) 60%,
			#002447 100%
		);
		z-index: 1;
	}

	.related-video-slide .video-play-wrap {
		position: absolute;
		inset: 0;
		z-index: 2;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		color: #fff;
		font-weight: 700;
	}

	.related-video-slide .video-play-wrap svg {
		width: 44px;
		height: 44px;
		fill: #fff;
		margin-bottom: 8px;
	}

	.related-video-slide .video-title {
		margin-top: 14px;
		font-size: 22px;
		font-weight: 800;
		line-height: 1.2;
	}

	/* Events */

	.custom-events-wrapper {
		background: #002447;
		padding: 40px 0 50px;
	}

	.custom-events-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px 20px;
	}

	.event-card {
		display: block;
		color: #ffffff;
		text-decoration: none;
		padding: 10px 10px 15px 10px;
		position: relative;
		overflow: hidden;
		border-radius: 10px;
		transition: transform 0.35s ease;
	}

	.event-card:hover {
		transform: translateY(-10px);
		color: #ffffff;
		/*box-shadow: 0 10px 25px rgba(0, 207, 255, 0.2);*/
	}
	.event-card::before {
		content: "";
		position: absolute;
		inset: 0;
		border-radius: 10px;

		background:
			linear-gradient(#00cfff 0 0) top left,
			linear-gradient(#00cfff 0 0) top right,
			linear-gradient(#00cfff 0 0) bottom right,
			linear-gradient(#00cfff 0 0) bottom left;

		background-repeat: no-repeat;
		background-size:
			0% 2px,
			2px 0%,
			0% 2px,
			2px 0%;

		transition: all 0.4s ease;
		pointer-events: none;
		z-index: 3;
	}

	.event-card:hover::before {
		background-size:
			100% 2px,
			2px 100%,
			100% 2px,
			2px 100%;
	}

	.event-thumb {
		position: relative;
		overflow: hidden;
		aspect-ratio: 16 / 9;
	}

	.event-thumb img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transition: transform 0.35s ease;
	}

	.event-card:hover .event-thumb img {
		transform: scale(1.05);
	}

	.event-overlay {
		position: absolute;
		inset: 0;
		z-index: 1;
		background: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 36, 71, 0.55) 60%,
			#002447 100%
		);
	}

	.event-play-wrap {
		position: absolute;
		inset: 0;
		z-index: 2;

		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;

		font-weight: 800;
		color: #ffffff;
		font-size: 22px;
	}

	.event-play-wrap svg {
		width: 38px;
		height: 38px;
		fill: #ffffff;
		margin-bottom: 8px;
	}

	.event-date-box {
		display: flex;
		align-items: center;
		gap: 10px;

		background: #004b9b;
		padding: 10px 18px;
		margin-top: 18px;
		border-radius: 4px;

		font-size: 14px;
		font-weight: 700;
	}

	.event-date-box span {
		display: block;
		line-height: 1.2;
	}

	.event-calendar-icon {
		display: flex;
		align-items: center;
	}

	.event-calendar-icon svg {
		width: 24px;
		height: 18px;
		fill: #ffffff;
	}

	.event-title {
		color: #ffffff;
		font-size: 30px;
		font-weight: 800;
		margin: 18px 0 12px;
		line-height: 1.15;
	}

	.event-desc {
		color: #ffffff;
		font-size: 18px;
		line-height: 1.55;
		margin: 0;
	}

	.event-pagination {
		margin-top: 45px;
		text-align: center;
	}

	.event-pagination .page-numbers {
		color: #ffffff;
		font-size: 24px;
		font-weight: 800;
		padding: 8px 12px;
		min-width: 2.5em;
		line-height: 2.25em;
		text-align: center;
		text-decoration: none;
		border-radius: .25rem;
		font-family: Inter !important;
		display: inline-block;
	}
	.event-pagination .page-numbers:hover{
		border: 2px solid #fff;
	
	}

	.event-pagination .current {
		background-color: #ffffff;
		color: #002447;
		border: 2px solid #ffffff;
	}

	#featured-events-wrapper.loading {
		opacity: 0.45;
		pointer-events: none;
		transition: opacity 0.25s ease;
	}

	/* Past Events Light */

	#past-events-wrapper {
		background: #ffffff;
	}

	#past-events-wrapper .event-card {
		color: #000000;
	}

	#past-events-wrapper .event-card:hover {
		color: #000000;
		text-decoration: none;
	}

	#past-events-wrapper .event-date-box {
		background: #eeeeee;
		color: #9a9a9a;
	}

	#past-events-wrapper .event-title {
		color: #000000;
	}

	#past-events-wrapper .event-desc {
		color: #000000;
	}

	#past-events-wrapper .event-calendar-icon svg {
		fill: #9a9a9a;
	}

	#past-events-wrapper .event-pagination .page-numbers {
		color: #002447;
	}

	#past-events-wrapper .event-pagination .page-numbers:hover {
		border: 2px solid #002447;
	}

	#past-events-wrapper .event-pagination .current {
		border: 2px solid #002447;
		background: #002447;
		color: #ffffff;
	}

	/* Optional archived/past feel */
	#past-events-wrapper .event-thumb img {
		filter: grayscale(100%);
		opacity: 0.85;
	}

	#past-events-wrapper .event-card:hover .event-thumb img {
		filter: grayscale(0%);
		opacity: 1;
	}

	/* AJAX loading */
	#past-events-wrapper.loading {
		opacity: 0.45;
		pointer-events: none;
		transition: opacity 0.25s ease;
	}

	/* Related Events */

	.related-events-slider-section {
		/* margin-top: 10px; */
	}

	.related-events-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 20px;
	}

	.related-events-footer {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.related-events-divider {
		margin-bottom: 10px;
	}

	.related-events-divider .elementor-divider-separator {
		display: block;
		width: 100%;
		border-top: 2px solid #000;
	}

	/* Back Button */
	.related-event-other-tools {
		text-align: right;
	}

	.back-to-events-btn {
		display: inline-flex;
		align-items: center;
		gap: 10px;

		background: #002447;
		color: #ffffff;
		padding: 12px 20px;

		font-size: 16px;
		font-weight: 700;
		line-height: 1;
		text-decoration: none;

		border-radius: 50px;
		transition: all 0.25s ease;
		margin-bottom: 20px;
	}

	.back-to-events-btn i {
		color: #ffffff;
		font-size: 16px;
	}

	.back-to-events-btn:hover {
		background: #003b73;
		color: #ffffff;
		transform: translateX(-3px);
	}

	/* Header */
	.related-events-header h3 {
		font-size: 28px;
		font-weight: 800;
		margin: 0;
	}

	/* Arrows */
	.related-event-slider-arrows {
		display: flex;
		gap: 18px;
	}

	.related-event-slider-arrows button {
		width: 48px;
		height: 48px;
		border: none;
		background: #002447;
		color: #fff;
		border-radius: 50%;
		cursor: pointer;

		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.related-event-slider-arrows button i {
		font-size: 22px;
	}

	/* Slider */
	.related-events-slider {
		display: flex;
		gap: 28px;
		overflow-x: auto;
		scroll-behavior: smooth;
		scrollbar-width: none;
	}

	.related-events-slider::-webkit-scrollbar {
		display: none;
	}

	/* Slide */
	.related-event-slide {
		flex: 0 0 calc(33.333% - 19px);
	}

	/* Thumbnail */
	.related-event-slide .event-thumb {
		position: relative;
		display: block;
		overflow: hidden;
		aspect-ratio: 16 / 9;
	}

	.related-event-slide .event-thumb img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	/* Overlay */
	.related-event-slide .event-overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 36, 71, 0.6) 60%,
			#002447 100%
		);
		z-index: 1;
	}

	/* Center Content */
	.related-event-slide .event-play-wrap {
		position: absolute;
		inset: 0;
		z-index: 2;

		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;

		color: #fff;
		font-weight: 700;
	}

	/* Title */
	.related-event-slide .event-title {
		margin-top: 14px;
		font-size: 22px;
		font-weight: 800;
		line-height: 1.2;
		color: #000;
	}
	
	.related-event-slide .event-thumb img {
		transition: transform 0.4s ease;
	}

	.related-event-slide:hover .event-thumb img {
			transform: scale(1.08);
	}
	
	.single-event-title {
		margin: 24px auto 18px;
		color: #002447;
		font-size: 42px;
		font-weight: 800;
		line-height: 1.15;
		max-width: 1120px;
		text-align: center;
	}

/* ================================
   ESG News Grid
================================ */

.esg-news-section {
    width: 100%;
}

/* Filters */
.esg-news-filters {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.esg-filter-toggle,
.esg-news-filters select {
    height: 28px;
    border: 3px solid #8a8a8a;
    border-radius: 999px;
    background: #ffffff;
    color: #777777;
    font-size: 11px;
    font-weight: 700;
    padding: 0 14px;
    cursor: pointer;
    outline: none;
}

.esg-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.esg-news-filters select {
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #777 50%),
                      linear-gradient(135deg, #777 50%, transparent 50%);
    background-position: calc(100% - 13px) 10px, calc(100% - 8px) 10px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 30px;
}

/* Grid */
.esg-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 20px;
}

.esg-news-card {
    display: block;
    color: #000000;
    text-decoration: none;
}

.esg-news-card:hover {
    color: #000000;
    text-decoration: none;
}

.esg-news-thumb-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 4px;
    overflow: hidden;
    background: #eeeeee;
}

.esg-news-thumb {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.35s ease;
}

.esg-news-card:hover .esg-news-thumb {
    transform: scale(1.06);
}

.esg-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.esg-news-card:hover .esg-news-thumb img {
    transform: scale(1.06);
}

.esg-news-placeholder {
    width: 100%;
    height: 100%;
    background: #d9d9d9;
}

.esg-news-date {
	font-family: Inter;
    font-size: 16px;
    line-height: 1.3;
    color: #9a9a9a;
    font-weight: 600;
	margin: 15px 0 15px 0;
}

.esg-news-title {
	font-family: Inter;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
    color: #000000;
	margin-top: 0px !important;
}

.esg-news-meta {
 	font-family: Inter;
    font-size: 16px;
    line-height: 1.4;
	font-family: Inter;
    color: #9a9a9a;
    text-transform: uppercase;
    font-weight: 500;
	margin-bottom: 15px;
}

.esg-news-excerpt {
    font-size: 18px;
    line-height: 1.45;
    color: #000000;
    font-weight: 500;
    margin: 0;
}

/* Pagination */
.esg-news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 45px;
}

.esg-news-page {
    background-color: transparent;
    color: #002447;
    padding: 8px 12px !important;
    min-width: 2.5em;
    line-height: 2.25em;
    text-align: center;
    text-decoration: none;
    border-radius: .25rem;
    font-weight: 800;
    font-family: Inter !important;
    font-size: 24px;
    display: inline-block;
}

.esg-news-page.active {
    background: #002447;
    color: #fff;
}

.esg-news-page.page-prev,
.esg-news-page.page-next {
    font-size: 24px !important;
    font-weight: 800 !important;
    line-height: 1;
    padding: 8px 12px !important;
}

/* Styling for ellipses */
.ellipsis {
    font-size: 24px;
    font-weight: 800;
    color: #002447;
    display: inline-block;
    margin: 0 10px;
    line-height: 2.25em;
}

/* Mobile responsive pagination */
@media screen and (max-width: 768px) {
    .esg-news-page {
        font-size: 20px;
        padding: 6px 10px;
    }
}/* Loading */
#esg-news-results.loading {
    opacity: 0.45;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.esg-news-empty {
    font-size: 16px;
    font-weight: 600;
    color: #002447;
	
}

/* Initially hidden */
#sorting-options {
    display: none;
    position: absolute;
    top: 40px;  /* Adjust position */
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    padding: 10px;
    border-radius: 5px;
}

/* Style the menu items */
#sorting-options ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/*Filtering News */
/* Initially hidden */
#sorting-options {
    display: none; /* Hidden by default */
    position: absolute; /* Position it below the button */
    top: 100%; /* Position it below the button */
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px; /* Increased width */
    padding: 10px;
    border-radius: 4px;
    z-index: 9999; /* Ensure it's on top */
}

/* Style for the dropdown items */
#sorting-options ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#sorting-options ul li {
    margin: 5px 0;
}

#sorting-options ul li a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 8px;
    border-radius: 4px;
}

/* Hover effect for items */
#sorting-options ul li a:hover {
    background-color: #f0f0f0;
}

/* Ensure the sorting button container is relative to allow absolute positioning */
#esg-news-filtering {
    position: relative;
}

/* Show the dropdown on hover */
#esg-news-filtering:hover + #sorting-options {
    display: block;
}

#sorting-options-region, #sorting-options-category  {
    display: none; /* Initially hidden */
    position: absolute;
    top: 100%; /* Position it below the button */
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 10px;
    border-radius: 4px;
    z-index: 9999;
	left: 10%;
}

#sorting-options-category {
	left: 20% !important;
}

#sorting-options-region ul, #sorting-options-category ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#sorting-options-region ul li, #sorting-options-category ul li {
    margin: 5px 0;
}

#esg-news-filtering-region, #esg-news-filtering-category {
    position: relative;
}

#esg-news-filtering-region:hover + #sorting-options-region, #esg-news-filtering-category:hover + #sorting-options-category {
    display: block;
}

/*Related News */
/* ================================
   ESG News - Related News Section
================================ */

.news-related {
    width: 100%;
    max-width: 1120px;
    margin: 40px auto 60px;
    padding: 0 20px;
}

/* Main wrapper */
.news-related .news-related-slider-section {
    width: 100%;
}

/* Top back button area */
.news-related .related-news-other-tools {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 18px;
}

/* Back to News button */
.news-related .back-to-news-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #002447;
    color: #ffffff;
    padding: 11px 20px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
}

/* Fix Back to News icon using same class name */
.news-related .back-to-news-btn i.icon-double-left-chevron {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 15px;
    flex: 0 0 16px;
    font-size: 0 !important;
    line-height: 0;
    color: transparent !important;
    font-family: inherit !important;
}

/* First chevron */
.news-related .back-to-news-btn i.icon-double-left-chevron::before,
.news-related .back-to-news-btn i.icon-double-left-chevron::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    border-left: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    transform: translateY(-50%) rotate(45deg);
    border-radius: 1px;
}

/* Left chevron */
.news-related .back-to-news-btn i.icon-double-left-chevron::before {
    left: 0;
}

/* Right chevron */
.news-related .back-to-news-btn i.icon-double-left-chevron::after {
    left: 7px;
}

.news-related .back-to-news-btn:hover {
    background: #004b7a;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Divider */
.news-related .related-news-divider {
    margin-bottom: 14px;
}

.news-related .related-news-divider .elementor-divider-separator {
    display: block;
    width: 100%;
    border-top: 2px solid #000000;
}

/* Heading */
.news-related .related-news-header h3 {
    margin: 0 0 24px;
    color: #004234;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
}

.news-related .news-related-slider {
    display: flex;
    gap: 28px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.news-related .news-related-slide {
    flex: 0 0 calc((100% - 56px) / 3);
    max-width: calc((100% - 56px) / 3);
}

/* Thumbnail link */
.news-related .news-thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 5x;
    background: #002447;
    text-decoration: none;
}

/* Thumbnail image */
.news-related .news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

/* Hover zoom */
.news-related .news-related-slide:hover .news-thumb img {
    transform: scale(1.08);
}

/* Dark bottom overlay */
.news-related .news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 36, 71, 0.55) 58%,
        #002447 100%
    );
    z-index: 1;
}

/* Center text */
.news-related .news-play-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    text-align: center;
}

.news-related .news-related-slide:hover .news-play-wrap::before {
    transform: scale(1.12);
}

/* News title */
.news-related .news-title {
    margin: 14px 0 0;
    color: #000000;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.15;
}

/* Footer arrows */
.news-related .related-news-footer {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

/* Arrow container */
.news-related .news-slider-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

/* Arrow buttons */
.news-related .news-slider-prev,
.news-related .news-slider-next {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #002447;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

.news-related .news-slider-prev:hover,
.news-related .news-slider-next:hover {
    background: #004b7a;
    transform: translateY(-2px);
}

/* Remove default button outline style but keep accessibility */
.news-related .news-slider-prev:focus,
.news-related .news-slider-next:focus,
.news-related .back-to-news-btn:focus {
    outline: 2px solid #f4c542;
    outline-offset: 3px;
}

/* ================================
   ESG News Reaction Section
================================ */

.news-reaction-div {
    width: 100%;
    max-width: 1120px;
    padding: 0 0 30px 0 !important;

}

.news-reaction-wrap {
    width: 100%;
}

/* Top divider */
.news-reaction-divider {
    width: 100%;
    height: 2px;
    background: #d9d9d9;
    margin-bottom: 26px;
}

/* Like + Share row */
.news-reaction-actions {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-bottom: 34px;
}

/* Like and Share buttons */
.news-like-btn,
.news-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: transparent !important;
    border: none !important;
    padding: 0;
    margin: 0;

    color: #111111;
    cursor: pointer;
    box-shadow: none !important;

    font-size: 18px;
    font-weight: 600;
    line-height: 1;

    appearance: none;
    -webkit-appearance: none;

    transition: color 0.25s ease, transform 0.25s ease;
}

/* Remove theme hover/focus button styles */
.news-like-btn:hover,
.news-share-btn:hover,
.news-like-btn:focus,
.news-share-btn:focus {
    background: transparent !important;
    border: none !important;
    outline: none;
    box-shadow: none !important;
}

/* Default icon and text color: black */
.news-like-btn i,
.news-share-btn i,
.news-like-count,
.news-share-text {
    color: #111111;
    transition: color 0.25s ease, transform 0.25s ease;
}

/* Icon size */
.news-like-btn i,
.news-share-btn i {
    font-size: 23px;
    line-height: 1;
}

/* Heart hover: red */
.news-like-btn:hover,
.news-like-btn:hover i,
.news-like-btn:hover .news-like-count {
    color: #ff4d55;
}

/* Share hover: blue */
.news-share-btn:hover,
.news-share-btn:hover i,
.news-share-btn:hover .news-share-text {
    color: #0073c8;
}

/* Small icon hover movement */
.news-like-btn:hover i,
.news-share-btn:hover i {
    transform: translateY(-1px) scale(1.08);
}

/* Discussion button */
.news-discussion-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;

    max-width: 430px;
    background: #eeeeee;
    color: #111111;

    padding: 18px 34px;
    border-radius: 999px;
    text-decoration: none;

    transition: all 0.3s ease;
}

.news-discussion-btn:hover {
    background: #e2e2e2;
    color: #111111;
    transform: translateY(-2px);
}

/* Discussion icon */
.news-discussion-icon {
    width: 30px;
    height: 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #000000;
    background: transparent;

    font-size: 26px;
    line-height: 1;
    flex: 0 0 30px;
}

.news-discussion-icon i {
    color: #000000;
    font-size: 26px;
    line-height: 1;
}

/* Discussion text */
.news-discussion-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.news-discussion-text strong {
    font-size: 18px;
    font-weight: 700;
}

.news-discussion-text small {
    font-size: 12px;
    font-weight: 500;
    color: #111111;
}

/* =================================
   ESG News Featured Showcase
================================= */
.slider-dots > span.dot {
    display: none !important;
}

.esg-news-showcase {
    width: 100%;
    max-width: 1360px;
    margin: 40px auto 30px;
    padding: 0 0;
}

.esg-news-showcase-viewport {
    overflow: hidden;
    width: 100%;
}

.esg-news-showcase-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.esg-news-showcase-slide {
    min-width: 100%;
    width: 100%;
}

.esg-news-showcase-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.esg-news-showcase-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 22px;
}

/* Card */
.esg-news-card {
    width: 100%;
    height: 100%;
}

.esg-news-card-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 240px;
    overflow: hidden;
    border-radius: 30px;
    text-decoration: none;
    background: #d9d9d9;
}

.esg-news-card-large .esg-news-card-link {
    min-height: 505px;
}

.esg-news-card-small .esg-news-card-link {
    min-height: 241px;
}

.esg-news-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.45s ease;
}

.esg-news-card-no-image {
    background: linear-gradient(135deg, #7aa7c7 0%, #002447 100%);
}

.esg-news-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.25) 38%,
        rgba(0, 0, 0, 0.05) 100%
    );
    z-index: 1;
}

.esg-news-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.esg-news-card-title {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.15;
}

.esg-news-card-large .esg-news-card-title {
    font-size: 30px;
}

.esg-news-card-excerpt {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    max-width: 85%;
}

.esg-news-card:hover .esg-news-card-bg {
    transform: scale(1.05);
}

/* Dots */
.esg-news-showcase-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
}

.esg-news-showcase-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: #d1d1d1;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
}

.esg-news-showcase-dot.is-active {
    background: #002447;
    transform: scale(1.12);
}

/* Glossary single layout */
.single-post.category-glossary .entry-header,
.single-post.category-glossary .entry-title,
.single-post.category-glossary .entry-meta,
.single-post.category-glossary .posted-by,
.single-post.category-glossary .posted-on {
    display: none !important;
}

.single-post.category-glossary .content-area {
    margin-top: 0 !important;
}

.single-post.category-glossary .site-main {
    padding-top: 0 !important;
}

.single-post.category-glossary .entry-content {
    margin-top: 0 !important;
}

.esg-glossary-single {
    max-width: 1120px;
    margin: 0 auto;
    padding: 50px 20px;
}

.esg-glossary-header {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid #d9e2ec;
}

.esg-glossary-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 14px;
    background: #002447;
    color: #ffffff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.esg-glossary-header h1 {
    margin: 0;
    color: #002447;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
}

.esg-glossary-description {
    color: #333333;
    font-size: 18px;
    line-height: 1.8;
}

.esg-glossary-description a {
    color: #005ea8;
    font-weight: 600;
}

.esg-glossary-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 50px 0;
}

.esg-glossary-nav-card {
    min-height: 110px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #d9e2ec;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 36, 71, 0.08);
}

.esg-glossary-nav-card span {
    display: block;
    margin-bottom: 10px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.esg-glossary-nav-card a {
    color: #002447;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
}

.esg-next {
    text-align: right;
}

.esg-similar-glossary {
    margin-top: 60px;
}

.esg-similar-glossary h2 {
    margin-bottom: 24px;
    color: #002447;
    font-size: 32px;
    font-weight: 800;
}

.esg-similar-glossary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.esg-similar-glossary-card {
    display: block;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #d9e2ec;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 36, 71, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.esg-similar-glossary-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(0, 36, 71, 0.14);
}

.esg-similar-glossary-card h3 {
    margin: 0 0 12px;
    color: #002447;
    font-size: 20px;
    font-weight: 800;
}

.esg-similar-glossary-card p {
    margin: 0;
    color: #444444;
    font-size: 15px;
    line-height: 1.6;
}
/* ===============================
   AJAX Glossary Directory
================================ */

.esg-glossary-directory {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 0;
}

.esg-glossary-pill-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}

.esg-glossary-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    padding: 22px 36px;
    background: #163a7a;
    color: #ffffff;
    border-radius: 24px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.esg-glossary-controls {
    margin-bottom: 40px;
}

.esg-glossary-controls-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ---------- Select ---------- */
.esg-glossary-select-wrap {
    position: relative;
    min-width: 235px;
}

.esg-glossary-select {
    width: 100%;
    height: 54px;
    border: 1px solid #cfcfcf;
    border-radius: 16px;
    padding: 0 46px 0 18px;
    font-size: 16px;
    background: #ffffff;
    color: #333333;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: none !important;
    outline: none;
}

.esg-glossary-select::-ms-expand {
    display: none;
}

.esg-glossary-select-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #4b5563;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.esg-glossary-select-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

/* ---------- Search ---------- */
.esg-glossary-search-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 350px;
    height: 60px;
	padding: 3px;
    border: 0px solid #8b8b8b;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
}

.esg-glossary-search {
    flex: 1;
    height: 100%;
    border: 2px solid #cfcfcf !important;
    outline: none !important;
	border-radius: 16px 0 0 16px !important;
    padding: 0 20px;
    font-size: 16px;
    box-shadow: none !important;
    background: transparent !important;
}

.esg-glossary-search-btn {
    width: 58px;
    height: 100%;
    background: transparent !important;
    color: #7b7b7b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid black;
    border-radius:  0 16px 16px 0 !important;
    
	box-shadow: none !important;
}

.esg-glossary-search-btn svg {
    width: 24px;
	height: 24px;
    display: block;
}

.esg-glossary-search-btn:hover {
    color: #163a7a;
}

/* ---------- Checkbox ---------- */
.esg-glossary-checkbox-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 16px;
    color: #000000;
}

.esg-glossary-checkbox-wrap input {
    display: none;
}

.esg-glossary-checkmark {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0d5a90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.esg-glossary-checkmark svg {
    width: 16px;
    height: 16px;
    display: block;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s ease;
}

.esg-glossary-checkbox-wrap input:checked + .esg-glossary-checkmark svg {
    opacity: 1;
    transform: scale(1);
}

.esg-glossary-index-intro {
    font-size: 16px;
    margin: 24px 0 18px;
    color: #000000;
}

.esg-glossary-index {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    line-height: 1.8;
    color: #002447;
    margin-bottom: 26px;
}

.esg-glossary-alpha-btn {
    border: none;
    background: transparent;
    color: #002447;
    font-size: 18px;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
}

.esg-glossary-alpha-btn:focus,
.esg-glossary-alpha-btn:visited,
.esg-glossary-alpha-btn:hover{
   color: #ffffff !important;
}

.esg-glossary-alpha-btn.active {
    color: #0d5a90;
    text-decoration: underline;
}

.esg-glossary-divider {
    height: 1px;
    background: #d9d9d9;
    margin-bottom: 36px;
}

.esg-glossary-results {
    position: relative;
    min-height: 220px;
    transition: opacity 0.2s ease;
}

.esg-glossary-results.loading {
    opacity: 0.45;
    pointer-events: none;
}

.esg-glossary-result-count {
    margin-bottom: 24px;
    color: #555555;
    font-size: 15px;
}

.esg-glossary-ajax-list {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.esg-glossary-ajax-item {
    padding-bottom: 34px;
    border-bottom: 1px solid #e2e2e2;
}

.esg-glossary-letter-label {
    background: #d8d8d8;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    padding: 12px 20px;
    margin-bottom: 28px;
}

.esg-glossary-ajax-item h3 {
    margin: 0 0 16px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.esg-glossary-ajax-item h3 a {
    color: #000000;
    text-decoration: none;
}

.esg-glossary-ajax-item h3 a:hover {
    color: #0d5a90;
}

.esg-glossary-ajax-description {
    font-size: 18px;
    line-height: 1.8;
    color: #111111;
}

.esg-glossary-ajax-description p {
    margin: 0 0 18px;
}

.esg-glossary-ajax-description a {
    color: #163a7a;
    word-break: break-word;
}

/* Glossary pagination - match Videos / Events / ESG News */
.esg-glossary-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.esg-glossary-page-btn {
    min-width: auto;
    height: auto;
    padding: 0;
    border: none !important;
    background: transparent !important;
    color: #002447 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.esg-glossary-page-btn:hover {
    color: #163a7a !important;
}

.esg-glossary-page-btn.active {
    width: 50px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #002b5c !important;
    color: #ffffff !important;
    border-radius: 4px !important;
}

.esg-glossary-page-btn.page-prev,
.esg-glossary-page-btn.page-next {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.esg-glossary-dots {
    color: #002447;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.esg-glossary-no-results {
    padding: 32px;
    background: #f5f5f5;
    border-radius: 16px;
    color: #333333;
    font-size: 18px;
    text-align: center;
}

@media (max-width: 767px) {
    .esg-glossary-pill-wrap {
        margin-bottom: 40px;
    }

    .esg-glossary-pill {
        min-width: auto;
        width: 100%;
        max-width: 260px;
        font-size: 24px;
        padding: 18px 24px;
    }

    .esg-glossary-controls-row {
        align-items: stretch;
    }

    .esg-glossary-select,
    .esg-glossary-search-wrap {
        width: 100%;
        max-width: 100%;
    }

    .esg-glossary-checkbox-wrap {
        margin-top: 6px;
    }

    .esg-glossary-index {
        font-size: 16px;
    }

    .esg-glossary-alpha-btn {
        font-size: 16px;
    }

    .esg-glossary-ajax-item h3 {
        font-size: 24px;
    }

    .esg-glossary-ajax-description {
        font-size: 17px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
		.esg-news-grid {
			grid-template-columns: repeat(2, 1fr);
			gap: 32px 22px;
		}

	  .popup-content {
            width: 85%;
            padding: 40px 30px;
        }

        .popup-row-profile {
            flex: 0 0 40%;
            max-width: 40%;
        }

        .popup-row-about {
            flex: 1;
            max-width: 60%;
        }

        .profile-text h2 {
            font-size: 30px;
        }

        .about-section h2 {
            font-size: 30px;
        }
		
		.related-video-slide {
			flex: 0 0 calc(50% - 14px);
		}
		
		.custom-video-grid {
			grid-template-columns: repeat(2, 1fr);
		}
		
		 .related-event-slide {
			flex: 0 0 calc(50% - 14px);
		}

		.related-events-header h3 {
			font-size: 24px;
		}
		 .news-related .news-related-slider {
			grid-template-columns: repeat(2, 1fr);
		}
	
		.news-related .news-related-slide {
			flex: 0 0 calc((100% - 28px) / 2);
			max-width: calc((100% - 28px) / 2);
		}

		.news-related .related-news-header h3 {
			font-size: 28px;
		}

		.news-related .news-title {
			font-size: 22px;
		}
		 .esg-news-showcase-grid {
        grid-template-columns: 1fr;
    }

    .esg-news-showcase-right {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .esg-news-card-large .esg-news-card-link {
        min-height: 420px;
    }

    .esg-news-card-small .esg-news-card-link {
        min-height: 240px;
    }

    .esg-news-card-large .esg-news-card-title {
        font-size: 26px;
    }

    .esg-news-card-excerpt {
        font-size: 16px;
        max-width: 100%;
    }
	.esg-similar-glossary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
		
}

/* Mobile */
@media (max-width: 767px) {
    /*Related Videos*/
	.related-video-slide {
        flex: 0 0 85%;
    }

    .related-videos-header h3 {
        font-size: 26px;
    }
	.related-video-slide .video-title {
		margin-bottom: 20px;
	}
	.custom-video-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .video-title {
        font-size: 24px;
    }
	/*Popup */
     .popup-overlay {
            padding: 12px;
            align-items: flex-end;
        }

        .popup-content {
            width: 100%;
            max-height: 92vh;
            padding: 24px 18px 24px;
            border-radius: 20px;
        }

        .popup-column {
            flex-direction: column;
			align-items: center;
        }

        .popup-row-profile,
        .popup-row-about {
            flex: 1 1 100%;
            max-width: 100%;
        }

        .profile-header {
            flex-direction: column;
            align-items: center !important;
            text-align: center !important;
			border-right: 0px solid white;

        }

        .profile-image {
            width: 90px;
            height: 90px;
            margin-right: 0;
            margin-bottom: 16px;
        }

        .profile-text h2 {
            font-size: 24px;
        }

        .profile-text h5 {
            font-size: 16px;
        }

        .profile-text h6 {
            font-size: 14px;
        }
		.about-section{
			text-align: center;
		}
		.about-section-2{
			margin-top: 40px;
		}
        .about-section, .about-section-2 {
            border-left: 0;
            border-top: 3px solid white;
            padding: 20px 0 0 0;
        }

        .about-section h2 {
            font-size: 24px;
        }

        .about-section p, .about-section-2 p {
            font-size: 15px;
            line-height: 1.7;
        }

        .view-profile-btn {
            width: 100%;
            margin-top: 24px;
        }

        .popup-close {
            top: 12px;
            right: 14px;
            font-size: 28px;
        }
		.custom-events-grid {
			grid-template-columns: 1fr;
		}

		.event-title {
			font-size: 26px;
		}

		.event-desc {
			font-size: 16px;
		}
	
		.related-events-header {
			align-items: flex-start;
			gap: 12px;
		}

		.related-event-other-tools {
			text-align: left;
		}

		.back-to-events-btn {
			font-size: 14px;
			padding: 10px 16px;
			margin-bottom: 16px;
		}

		.related-events-header h3 {
			font-size: 22px;
			line-height: 1.2;
		}

		.related-events-slider {
			gap: 18px;
			scroll-snap-type: x mandatory;
		}

		.related-event-slide {
			flex: 0 0 85%;
			scroll-snap-align: start;
		}

		.related-event-slide .event-title {
			font-size: 18px;
			line-height: 1.25;
		}

		.related-event-slider-arrows {
			gap: 14px;
			margin-top: 20px;
		}

		.related-event-slider-arrows button {
			width: 42px;
			height: 42px;
		}

		.related-event-slider-arrows button i {
			font-size: 18px;
		}
		
		
		.single-event-title {
			font-size: 28px;
			line-height: 1.2;
			padding: 0 20px;
			text-align: center;
		}
		.esg-news-filters {
        gap: 10px;
        margin-bottom: 28px;
    }

    .esg-news-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .esg-news-title {
        font-size: 23px;
    }

    .esg-news-pagination {
        gap: 12px;
        flex-wrap: wrap;
    }
	
	#sorting-options-region, #sorting-options-region-2{
		left: 0px;
		width: 100%;
	}
	 .news-related {
        margin: 32px auto 48px;
        padding: 10px 16px !important;
    }

    .news-related .related-news-other-tools {
        justify-content: flex-start;
    }

	 .news-related .news-related-slider {
        gap: 20px;
    }

    .news-related .news-related-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .news-related .related-news-header h3 {
        font-size: 26px;
    }

    .news-related .news-title {
        font-size: 21px;
    }

    .news-related .news-slider-prev,
    .news-related .news-slider-next {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
	 
	.news-reaction-div {
        padding: 10px 16px !important;
        margin: 24px auto 36px;
    }

    .news-reaction-actions {
        gap: 24px;
        margin-bottom: 28px;
    }

    .news-like-btn,
    .news-share-btn {
        font-size: 17px;
    }

    .news-like-btn i,
    .news-share-btn i {
        font-size: 21px;
    }

    .news-discussion-btn {
        max-width: 100%;
        padding: 16px 22px;
        gap: 14px;
    }

    .news-discussion-text strong {
        font-size: 18px;
    }

    .news-discussion-text small {
        font-size: 13px;
    }
	.esg-news-showcase {
        padding: 0 16px;
        margin: 30px auto 24px;
    }

    .esg-news-showcase-grid,
    .esg-news-showcase-right {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .esg-news-card-large .esg-news-card-link,
    .esg-news-card-small .esg-news-card-link {
        min-height: 240px;
    }

    .esg-news-card-content {
        padding: 20px;
    }

    .esg-news-card-large .esg-news-card-title,
    .esg-news-card-title {
        font-size: 22px;
    }

    .esg-news-card-excerpt {
        font-size: 15px;
    }
	 .esg-glossary-header h1 {
        font-size: 34px;
    }

    .esg-glossary-nav,
    .esg-similar-glossary-grid {
        grid-template-columns: 1fr;
    }

    .esg-next {
        text-align: left;
    }
	
	.esg-glossary-pill {
        min-width: auto;
        width: 100%;
        max-width: 260px;
        font-size: 24px;
        padding: 18px 24px;
    }

    .esg-glossary-controls-row {
        align-items: stretch;
    }

    .esg-glossary-select,
    .esg-glossary-search-wrap {
        max-width: 100%;
        width: 100%;
    }

    .esg-glossary-item-title {
        font-size: 24px;
    }

    .esg-glossary-item-content {
        font-size: 17px;
    }

	
	
}