.section-spacing {
    padding: 30px 0;
}

.container {
    width: min(1200px, 90%);
    margin: auto;
}

.narrow {
    max-width: 900px;
}

.zines-grid,
.podcast-grid,
.videos-grid {
    display: grid;
    gap: 30px;
}

.zines-grid {
    grid-template-columns: repeat(3, 1fr);
}

.podcast-grid {
    grid-template-columns: repeat(3, 1fr);
}

.videos-grid {
    grid-template-columns: repeat(4, 1fr);
}

.zine-card,
.podcast-card,
.video-card {
    background: #fff;
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.button {
    /*padding: 12px 20px;*/
    background: #d9a441;
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {

    .zines-grid,
    .podcast-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }

}

.zine-card {
    display: flex;
    align-items: center;
    gap: 24px;

    padding: 18px;
    background: #fff;

    border: 2px solid #ececec;
    border-radius: 0.375rem;

    transition: 0.3s ease;
}

.zine-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.zine-card__image img {
    width: 140px;
    height: auto;
    display: block;
    border-radius: 10px;
}

.zine-card__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 100px;
}

.zine-card__title {
    margin: 0;

    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;

    color: #111;
}

.zine-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: fit-content;

    padding: 5px 30px;

    background: #d8a441;
    color: #000;

    text-decoration: none;

    border-radius: 0.375rem;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s ease;
}

.zine-card__button:hover {
    background: #c7922f;
	color: #fff;
}

.zines-top{
    display: flex;
    align-items: center;
    gap: 60px;
	padding-bottom: 80px;
}

.zines-top__image{
    flex: 0 0 440px;
}

.zines-top__image img{
    width: 100%;
    display: block;
    border-radius: 0.375rem;
}

.zines-top__content{
    flex: 1;
}

.podcast-top{
    display: flex;
    align-items: center;
    gap: 60px;

    margin-bottom: 80px;
	margin-top:40px;
}

.podcast-top__image{
    flex: 0 0 440px;
}

.podcast-top__image img{
    width: 100%;
    display: block;
    border-radius: 0.375rem;
}

.podcast-top__content{
    flex: 1;
}

.podcast-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT: Current episode */
.current-podcast {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
	border: 1px solid #eee;
    border-radius: 0.375rem;
    background: #fff;
}

/* RIGHT: Episodes list */
.podcast-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.current-podcast__content span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
}

.current-podcast__content p {
    font-weight: 500;
    color: #333;
}

.current-podcast__embed {
    margin-top: 10px;
}

.podcast-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 14px;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    background: #fff;
}

/* Play / embed area (left icon area) */
.podcast-card__embed {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Text content */
.podcast-card__content span {
    font-size: 11px;
    text-transform: uppercase;
    color: #777;
}

.podcast-card__content h3 {
    font-size: 14px;
    margin: 3px 0;
}

.podcast-card__content p {
    font-size: 12px;
    color: #555;
}

.podcast-card:hover {
    border-color: #ccc;
    transform: translateY(-1px);
    transition: 0.2s ease;
}

.label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    background: #db552e;
    color: #fff !important;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.current-podcast__content .month {
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
}

.current-podcast__content h3 {
    font-size: 14px;
    margin: 10px 0;
}

.current-podcast__content p {
    font-weight: 500;
    color: #db552e;
}

.current-podcast__content .description {
    margin-top: 10px;
	margin-bottom: 10px;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.podcast-right__header {
    margin-bottom: 15px;
}

.podcast-list {
    display: flex;
    /*flex-direction: column;*/
    gap: 12px;
}

.podcast-item {
    /*display: flex;*/
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid #eee;
    border-radius: 0.375rem;
    background: #fff;
	width: 30%;
}

.podcast-item__play {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.podcast-item__content .month {
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
}

.podcast-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT (Current episode) */
.current-podcast {
    width: 100%;
}

/* RIGHT (All episodes) */
.podcast-right {
    width: 50%;
}

/* Optional: make it responsive */
@media (max-width: 900px) {
    .podcast-wrapper {
        flex-direction: column;
    }

    .current-podcast,
    .podcast-right {
        width: 100%;
    }
}

.podcast-item__content h3 {
    font-size: 14px;
    margin: 2px 0;
}

.podcast-item__content p {
    font-size: 12px;
    color: #666;
}

.video-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
	margin-top:30px;
}

/* LEFT: title + subtitle */
.video-header-left {
    flex: 0 0 40%;
}

.video-header-left h2 {
    font-size: 38px;
    line-height: 1.1;
    margin: 0 0 10px;
}

.video-header-left h4 {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    opacity: 0.7;
}

/* RIGHT: intro text */
.video-header-right {
    flex: 0 0 60%;
}

.video-header-right .videos-intro {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.85;
    max-width: 650px;
}

/* Optional: slight visual balance tweak */
.video-header-right {
    display: flex;
    justify-content: flex-end;
}

/* Responsive */
@media (max-width: 900px) {
    .video-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .video-header-left,
    .video-header-right {
        flex: 1 1 100%;
    }

    .video-header-right {
        justify-content: flex-start;
    }
}

.video-card__content{
	padding: 10px 20px;
}

.current-podcast{
    display:flex !important;
    flex-direction:row !important;
    align-items:flex-start;
    gap:20px;
	padding: 20px;
}

.preview_image{
    flex:0 0 250px;
}

.preview_image img{
    width:100%;
    display:block;
    border-radius:0.375rem;
}

.current-podcast__content{
    flex:1;
}

@media(max-width:768px){

    .current-podcast{
        flex-direction:column !important;
    }

    .preview_image{
        width:100%;
    }
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {

    .podcast-top {
        flex-direction: column;
        text-align: center;
    }

    .podcast-wrapper {
        flex-direction: column;
    }

    .current-podcast {
        flex-direction: column;
        text-align: center;
    }

    .preview_image {
        width: 100%;
    }

    .podcast-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .podcast-item__play {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .current-podcast__content h3 {
        font-size: 18px;
    }

    .podcast-item__content h3 {
        font-size: 15px;
    }

    .podcast-wrapper {
        gap: 30px;
    }
	.podcast-top__image{
		flex: 0 0 0px;
	}
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
    .zines-top {
        flex-direction: column;
        text-align: center;
    }

    .zines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .section-heading h2 {
        font-size: 26px;
    }

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

    .zine-card__body {
        padding: 15px;
    }
	.zines-top__image {
		flex: 0 0 0px;
	}
}

iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.video-card__embed {
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center */
}

.video-card__embed iframe {
    width: 100%;
    max-width: 560px;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 0;
}

.section-heading{
	color: #eaa622;
}