/* ==========================================================================
   Ad Slot — elastyczny slot reklamowy/afiliacyjny
   Wgraj do: wp-content/themes/generatepress_child/ad-slot.css
   ========================================================================== */

.as-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.as-label {
    display: block;
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 8px;
    text-align: center;
}

.as-link {
    display: block;
    width: 100%;
    max-width: 100%;
    line-height: 0; /* usuwa niechciany odstęp pod obrazkiem inline */
    border-radius: 4px;
    overflow: hidden;
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.as-link:hover {
    opacity: 0.92;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.as-image {
    display: block;
    width: 100%;
    height: auto; /* zachowuje naturalne proporcje obrazka */
}

