/* Podcasts Archive — Layout, Filters, Grid, Load More */

.pdc-wrap {
	display: flex;
	align-items: flex-start;
	gap: 32px;
	font-family: 'Inter', sans-serif;
	max-width: 1280px;
	margin: 0 auto;
	padding: 32px 16px;
	box-sizing: border-box;
}

.pdc-wrap *,
.pdc-wrap *::before,
.pdc-wrap *::after {
	box-sizing: border-box;
}

/* Sidebar */
.pdc-sidebar {
	flex: 0 0 270px;
	width: 270px;
	background: #F4F2F2;
	border-radius: 8px !important;
	padding: 28px 24px;
	box-shadow: 0 4px 16px rgba(11, 31, 58, 0.03);
}

.pdc-filter-heading {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 16px;
	margin-bottom: 18px;
	border-bottom: 1px solid rgba(11, 31, 58, 0.1);
}

.pdc-filter-heading h3 {
	font-family: 'Cormorant', serif;
	font-size: 24px;
	font-weight: 600;
	color: #0b1f3a;
	margin: 0;
	letter-spacing: 0.01em;
}

.pdc-filter-icon svg {
	display: block;
}

.pdc-filter-group {
	border-bottom: 1px solid rgba(11, 31, 58, 0.08);
	padding-bottom: 14px;
	margin-bottom: 14px;
}

.pdc-filter-group:last-of-type {
	border-bottom: none;
	margin-bottom: 6px;
	padding-bottom: 4px;
}

.pdc-filter-group-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: #0b1f3a;
	padding: 4px 0 12px;
	user-select: none;
}

.pdc-toggle-arrow {
	font-size: 9px;
	color: rgba(11, 31, 58, 0.55);
	transition: transform 0.25s ease;
}

.pdc-filter-group.pdc-collapsed .pdc-toggle-arrow {
	transform: rotate(180deg);
}

.pdc-filter-group.pdc-collapsed .pdc-filter-list {
	display: none;
}

.pdc-filter-list {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 260px;
	overflow-y: auto;
}

.pdc-filter-list::-webkit-scrollbar {
	width: 5px;
}

.pdc-filter-list::-webkit-scrollbar-thumb {
	background: rgba(11, 31, 58, 0.2);
	border-radius: 4px;
}

.pdc-filter-item {
	margin-bottom: 2px;
}

/* Custom checkbox */
.pdc-filter-item label {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 7px 6px 7px 30px;
	border-radius: 7px;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.pdc-filter-item label:hover {
	background-color: rgba(11, 31, 58, 0.05);
}

.pdc-filter-item input[type='checkbox'] {
	position: absolute !important;
	inset: 0 !important;
	opacity: 0 !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	margin: 0 !important;
	width: 100% !important;
	height: 100% !important;
	cursor: pointer !important;
	z-index: 2 !important;
}

.pdc-checkbox-ui {
	position: absolute !important;
	left: 6px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px !important;
	height: 16px !important;
	border: 1.5px solid rgba(11, 31, 58, 0.28) !important;
	border-radius: 3px !important;
	background: #ffffff !important;
	transition: background-color 0.2s ease, border-color 0.2s ease;
	z-index: 1;
	flex-shrink: 0;
	pointer-events: none;
	display: block !important;
}

.pdc-filter-item input:checked ~ .pdc-checkbox-ui {
	background: #0b1f3a !important;
	border-color: #0b1f3a !important;
}

.pdc-checkbox-ui::after {
	content: '' !important;
	position: absolute !important;
	left: 4.5px;
	top: 1px;
	width: 4px;
	height: 8px;
	border: solid #ffffff !important;
	border-width: 0 2px 2px 0 !important;
	transform: rotate(45deg) scale(0);
	transition: transform 0.15s ease;
	display: block !important;
}

.pdc-filter-item input:checked ~ .pdc-checkbox-ui::after {
	transform: rotate(45deg) scale(1) !important;
}

.pdc-checkbox-label {
	position: relative;
	z-index: 1;
	font-size: 14px;
	font-weight: 400;
	color: #0b1f3a;
	line-height: 1.3;
}

/* Clear filters button */
.pdc-clear-filters {
	display: inline-flex !important;
	align-items: center !important;
	gap: 7px !important;
	background: transparent !important;
	border: 1.5px solid #0b1f3a !important;
	border-radius: 5px !important;
	padding: 9px 20px !important;
	margin-top: 10px !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	color: #0b1f3a !important;
	cursor: pointer !important;
	text-decoration: none !important;
	transition: background-color 0.25s ease, color 0.25s ease !important;
}

.pdc-clear-filters:hover {
	background: #be9047 !important;
	border-color: #be9047 !important;
	color: #ffffff !important;
}

.pdc-clear-icon {
	font-size: 14px;
	display: inline-block;
	transition: transform 0.4s ease;
}

.pdc-clear-filters:hover .pdc-clear-icon {
	transform: rotate(-180deg);
}

/* Content area / top bar */
.pdc-content {
	flex: 1 1 auto;
	min-width: 0;
}

.pdc-top-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 16px;
	margin-bottom: 22px;
}

.pdc-info-text {
	font-size: 14px;
	line-height: 1.5;
	color: rgba(11, 31, 58, 0.65);
	max-width: 320px;
	flex: 1 1 auto;
	min-width: 0;
}

.pdc-sort-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #0b1f3a;
	flex-shrink: 0;
	white-space: nowrap;
}

.pdc-sort-wrap label {
	white-space: nowrap;
}

.pdc-sort-wrap select {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #0b1f3a;
	border: 1px solid rgba(11, 31, 58, 0.18);
	border-radius: 6px;
	padding: 7px 12px;
	background: #ffffff;
	cursor: pointer;
	white-space: nowrap;
}

/* Grid */
.pdc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	transition: opacity 0.2s ease;
}

.pdc-grid.pdc-loading {
	opacity: 0.4;
	pointer-events: none;
}

.pdc-no-results {
	grid-column: 1 / -1;
	text-align: center;
	color: rgba(11, 31, 58, 0.6);
	font-size: 15px;
	padding: 50px 0;
}

/* Load more */
.pdc-load-more-wrap {
	text-align: center;
	margin-top: 36px;
}

.pdc-load-more-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	min-width: 160px;
	border: none !important;
	border-radius: 5px !important;
	background: #0b1f3a !important;
	color: #ffffff !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.04em !important;
	padding: 13px 28px !important;
	cursor: pointer !important;
	transition: background-color 0.25s ease, opacity 0.2s ease !important;
}

.pdc-load-more-btn:hover {
	background: #be9047 !important;
	opacity: 1 !important;
}

.pdc-load-more-btn:disabled {
	cursor: not-allowed !important;
	opacity: 0.75 !important;
}

.pdc-spinner {
	display: none;
	width: 15px;
	height: 15px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: pdc-spin 0.7s linear infinite;
}

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

/* -----------------------------------------------------------
 * Podcast Card
 * -------------------------------------------------------- */
.pdc-card {
	background: #ffffff;
	border-radius: 7px !important;
	border: 1px solid rgba(11, 31, 58, 0.08);
	overflow: hidden;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	display: flex;
	flex-direction: column;
	text-decoration: none !important;
	color: inherit !important;
}

.pdc-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(11, 31, 58, 0.08);
}

.pdc-card-image {
	position: relative;
	overflow: hidden;
	background: #f2f4f7;
}

.pdc-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
	transition: transform 0.5s ease;
}

.pdc-card:hover .pdc-card-image img {
	transform: scale(1.06);
}

.pdc-card-image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, #eef1f5 0%, #e6e9ee 100%);
}

.pdc-card-content {
	padding: 18px !important;
	display: flex !important;
	flex-direction: column !important;
	flex-grow: 1 !important;
	text-align: left !important;
	align-items: flex-start !important;
	border-top: 3px solid #be9047 !important;
}

.pdc-card-title {
	color: #0b1f3a !important;
	font-family: 'Cormorant', serif !important;
	font-size: 22px !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
	text-align: left !important;
	margin: 0 0 6px !important;
	width: 100% !important;
}

.pdc-card-category {
	color: #be9047 !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 12.5px !important;
	font-weight: 600 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	text-align: left !important;
	margin: 0 0 12px !important;
	width: 100% !important;
}

.pdc-card-duration {
	display: flex !important;
	align-items: center !important;
	justify-content: start !important;
	gap: 7px !important;
	margin: 0 !important;
	color: #575a5f !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 14px !important;
	font-weight: 300 !important;
	text-align: left !important;
	width: 100% !important;
}

.sre-icon {
	color: #0b1f3a !important;
	font-size: 14px !important;
	flex-shrink: 0 !important;
}

.pdc-card-link {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.04em !important;
	color: #0b1f3a !important;
	text-decoration: none !important;
	margin-top: auto !important;
	padding-top: 16px !important;
	width: fit-content !important;
}

.pdc-card-arrow {
	transition: transform 0.35s ease;
}

.pdc-card:hover .pdc-card-arrow {
	transform: translateX(6px);
}

/* Responsive */
@media (max-width: 1024px) {
	.pdc-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pdc-sidebar {
		flex: 0 0 230px;
		width: 230px;
	}
}

@media (max-width: 768px) {
	.pdc-wrap {
		flex-direction: column;
		padding: 20px 12px;
	}

	.pdc-sidebar {
		width: 100%;
		flex: 1 1 auto;
	}

	.pdc-grid {
		grid-template-columns: 1fr;
	}

	.pdc-top-bar {
		flex-wrap: wrap;
		align-items: flex-start;
		gap: 10px;
	}

	.pdc-info-text {
		max-width: 100%;
		flex: 1 1 100%;
	}
}




/* Podcast Related Programs Section */

.podcast-programs-scroll {
    width: 100%;
    max-height: 630px; /* approx height for 3 items - adjust if row height changes */
    overflow-y: auto;
    overflow-x: hidden;
}

/* Sleek scrollbar */
.podcast-programs-scroll::-webkit-scrollbar {
    width: 5px;
}

.podcast-programs-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.podcast-programs-scroll::-webkit-scrollbar-thumb {
    background-color: #d8dade;
    border-radius: 10px;
}

.podcast-programs-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #be9047;
}

.podcast-programs-scroll {
    scrollbar-width: thin;
    scrollbar-color: #d8dade transparent;
}

.podcast-programs-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.podcast-program-item {
    width: 100%;
    border-bottom: 1px solid #e6e6e6;
    padding: 24px 0;
}

.podcast-program-item:first-child {
    padding-top: 0;
}

.podcast-program-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.podcast-program-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.podcast-program-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.podcast-program-image-col {
    flex: 0 0 180px;
    width: 180px;
}

.podcast-program-content-col {
    flex: 1 1 auto;
}

.podcast-program-img,
.podcast-program-img-placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    border-radius: 8px !important;
    display: block;
}

.podcast-program-img-placeholder {
    background-color: #e6e9ee;
}

.podcast-program-title {
    font-family: 'Inter', serif;
    font-weight: 600;
    font-size: 24px;
    color: #0b1f3a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.podcast-program-category {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    color: #be9047;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Mobile: stack image on top of content */
@media (max-width: 767px) {
    .podcast-program-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .podcast-program-image-col {
        flex: 0 0 auto;
        width: 100%;
    }
}




/* Podcast Related Speakers Section */

.podcast-speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.podcast-speaker-item {
    width: 100%;
}

.podcast-speaker-link {
    text-decoration: none;
    display: block;
    color: inherit;
    cursor: pointer;
}

.podcast-speaker-image {
    width: 100%;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 10px;
}

.podcast-speaker-img,
.podcast-speaker-img-placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    border-radius: 0;
    display: block;
}

.podcast-speaker-img-placeholder {
    background-color: #e6e9ee;
}

.podcast-speaker-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #0b1f3a;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.podcast-speaker-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #0b1f3a;
    margin: 0 0 2px 0;
    line-height: 1.4;
}

.podcast-speaker-org {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #575a5f;
    margin: 0;
    line-height: 1.4;
}

/* Tablet: keep 3 columns side by side */
@media (max-width: 1024px) and (min-width: 768px) {
    .podcast-speakers-grid {
        gap: 20px;
    }
}

/* Mobile: stack into single column */
@media (max-width: 767px) {
    .podcast-speakers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}




/* Convert Video URL to YouTube / Default video playback */

.podcast-video{

    position:relative;
    width:100%;
    aspect-ratio:16 / 9;
    overflow:hidden;
    cursor:pointer;
    border-radius:10px;
    background:#000;

}

.podcast-video img,
.podcast-video video,
.podcast-video iframe{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

}

.podcast-video iframe{

    border:0;

}

.generated-thumb{

    width:100%;
    height:100%;
    object-fit:cover;

}

.play-button{

    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:72px;
    height:72px;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.25s ease;
    z-index:2;

}

.podcast-video:hover .play-button{

    transform:translate(-50%,-50%) scale(1.08);

}

/* YouTube & Vimeo */

.youtube-play{

    background:transparent;

}

.youtube-play img{

    width:72px;
    height:72px;
    object-fit:contain;
    display:block;
    pointer-events:none;

}

/* Local */

.local-play{

    background:#be9047;
    border-radius:50%;

}

.local-play i{

    color:#fff;
    font-size:28px;

}

.youtube-play::selection,
.local-play::selection{

    background:transparent;

}




/* Convert Audio URL value to Spotify / Apple Music iFrame */

.podcast-audio-player{

    width:100%;
    margin:20px 0;

}

.podcast-audio-player iframe{

    width:100%;
    max-width:100%;
    border:0;
    border-radius:12px;
    display:block;

}




/* Show latest podcast on Homepage using shortcode */

.lpc-card {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	background-color: #0b1f3a;
}

.lpc-image-box {
	position: relative;
	width: 100%;
	height: 260px;
	flex-shrink: 0;
	overflow: hidden;
}

.lpc-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
	transition: transform 0.5s ease;
}

.lpc-card:hover .lpc-image {
	transform: scale(1.06);
}

.lpc-image-gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background: linear-gradient(
		180deg,
		rgba(11, 31, 58, 0) 0%,
		rgba(11, 31, 58, 0) 70%,
		#0b1f3a 100%
	);
	pointer-events: none;
}

.lpc-play-btn {
	position: absolute;
	left: 24px;
	bottom: 24px;
	width: 56px;
	height: 56px;
	border-radius: 50% !important;
	background-color: #be9047 !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 3;
	padding: 0;
	box-sizing: border-box;
}

button.lpc-play-btn {
    line-height: 0px;
}

.lpc-play-btn i {
	color: #ffffff !important;
	font-size: 20px;
	margin-left: 3px;
}

/* ===== BOX 2: CONTENT =====
   Solid color only. No gradient here at all. */
.lpc-content-box {
	position: relative;
	background-color: #0b1f3a;
	padding: 20px 24px 24px;
	box-sizing: border-box;
}

.lpc-category {
	color: #be9047;
	text-transform: uppercase;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 8px;
}

.lpc-title {
	color: #ffffff;
	font-family: 'Inter', sans-serif;
	font-size: 25px;
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: 14px;
}

.lpc-speakers {
	color: #ffffff;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 300;
}