/*
 * Styles for the full-width category advertisement banner
 */
.frontpage-category-ad-block {
    width: 100vw;
    max-width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #eaf3ff 0%, #f5faff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.2em 0 1.2em 0;
    margin-bottom: 0.5em;
    box-shadow: 0 2px 16px rgba(0,78,188,0.07);
    border-bottom: 2.5px solid #004EBC;
    position: relative;
    z-index: 1;
}
.frontpage-category-ad-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.2em;
    text-decoration: none;
    width: 100%;
    justify-content: center;
}
.frontpage-category-ad-imgwrap {
    width: 120px;
    height: 120px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,78,188,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}
.frontpage-category-ad-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.frontpage-category-ad-name {
    font-size: 2.1em;
    font-weight: 800;
    color: #004EBC;
    letter-spacing: -1px;
    text-shadow: 0 2px 8px rgba(0,78,188,0.07);
    margin: 0 0 0 0.2em;
    padding: 0;
    line-height: 1.1;
}
@media (max-width: 700px) {
    .frontpage-category-ad-block {
        padding: 1.2em 0 0.7em 0;
    }
    .frontpage-category-ad-link {
        flex-direction: column;
        gap: 0.7em;
    }
    .frontpage-category-ad-imgwrap {
        width: 80px;
        height: 80px;
    }
    .frontpage-category-ad-name {
        font-size: 1.2em;
    }
}
