/* Yayınlar Page Overrides */

/* Hero Banner Section */
.yy-banner {
    position: relative;
    background: linear-gradient(135deg, #FFA14D 0%, #FF8A3D 50%, #E86420 100%);
    padding: 3rem 4rem 0;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.yy-banner-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 3;
}

.yy-banner-city {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    opacity: 0.6;
}

.yy-banner-girl {
    position: relative;
    z-index: 3;
    max-width: 220px;
    width: 100%;
    height: auto;
    align-self: flex-end;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
}

.yy-banner-text {
    flex: 1;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    z-index: 3;
    padding: 1rem 0;
}

.yy-banner-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.yy-banner-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.4;
}

.yy-banner-boy {
    position: relative;
    z-index: 3;
    max-width: 240px;
    width: 100%;
    height: auto;
    align-self: flex-end;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
}

.yy-banner-kite {
    position: absolute;
    top: -120px;
    right: 2%;
    width: 420px;
    height: auto;
    z-index: 20;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: kiteFloat 4s ease-in-out infinite;
}

@keyframes kiteFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@media (max-width: 1200px) {
    .yy-banner {
        padding: 2.5rem 2rem 0;
    }

    .yy-banner-text h1 {
        font-size: 2rem;
    }

    .yy-banner-kite {
        width: 300px;
        top: -80px;
    }
}

@media (max-width: 1024px) {
    .yy-banner {
        padding: 2rem 1.5rem 0;
    }

    .yy-banner-text h1 {
        font-size: 1.7rem;
    }

    .yy-banner-text p {
        font-size: 0.85rem;
    }

    .yy-banner-girl {
        max-width: 150px;
    }

    .yy-banner-boy {
        max-width: 170px;
    }

    .yy-banner-kite {
        width: 220px;
        top: -60px;
    }
}

@media (max-width: 768px) {
    .yy-banner {
        padding: 1.5rem 1rem 0;
        min-height: auto;
    }

    .yy-banner-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.6rem;
        justify-content: center;
    }

    .yy-banner-girl,
    .yy-banner-boy {
        max-width: 90px;
        order: 2;
    }

    .yy-banner-text {
        order: 1;
        flex: 1 0 100%;
        padding: 0.5rem 0;
    }

    .yy-banner-text h1 {
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .yy-banner-text p {
        font-size: 0.72rem;
    }

    .yy-banner-kite {
        width: 140px;
        top: -40px;
        right: 0;
    }

    .yy-banner-city {
        opacity: 0.4;
    }
}

@media (max-width: 480px) {
    .yy-banner {
        padding: 1.2rem 0.8rem 0;
    }

    .yy-banner-text h1 {
        font-size: 1rem;
    }

    .yy-banner-text p {
        font-size: 0.65rem;
    }

    .yy-banner-girl,
    .yy-banner-boy {
        max-width: 70px;
    }

    .yy-banner-kite {
        width: 100px;
        top: -30px;
    }
}


/* Remove background images and make all cards blue */
.publications .pub-card.fenomen,
.publications .pub-card.becerikli,
.publications .pub-card.bilsem {
    background-image: none;
    background: linear-gradient(180deg, #5BC0F8 0%, #3FA0D8 100%);
    min-height: 510px;
}

@media (max-width: 1024px) {
    .publications .pub-card.fenomen,
    .publications .pub-card.becerikli,
    .publications .pub-card.bilsem {
        min-height: 440px;
    }
}

@media (max-width: 768px) {
    .publications .pub-card.fenomen,
    .publications .pub-card.becerikli,
    .publications .pub-card.bilsem {
        min-height: 360px;
    }

    /* Hide dividers when stacked vertically */
    .publications .pub-card + .pub-card::after {
        display: none;
    }
}

/* Remove the colored overlay */
.publications .pub-card::before {
    display: none;
}

/* Thin white divider lines between cards - not full height */
.publications .pub-card + .pub-card::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 2px;
    background-color: #FFFFFF;
    z-index: 5;
    border-radius: 2px;
    opacity: 0.6;
}
