/* ============================
   AD BLOCK COMPONENT STYLE
   ============================ */

.ad-slot {
    width: var(--ad-w-web);
    height: var(--ad-h-web);
    min-height: var(--ad-h-web);
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: var(--ad-w-web) var(--ad-h-web);
    background-color: transparent;
}

.ad-slot img {
    max-width: 100%;
    height: auto;
    fetchpriority: low !important;
}

.ad-slot iframe {
    max-width: 100%;
    fetchpriority: low !important;
}

@media (max-width: 820px) {
    .ad-slot {
        width: var(--ad-w-mob, var(--ad-w-web));
        height: var(--ad-h-mob, var(--ad-h-web));
        min-height: var(--ad-h-mob, var(--ad-h-web));
        contain-intrinsic-size: var(--ad-w-mob, var(--ad-w-web)) var(--ad-h-mob, var(--ad-h-web));
    }
}

.ad-slot__placeholder {
    width: 100%;
    height: 100%;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 10px;
    letter-spacing: 1px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.ad-slot__placeholder::after {
    content: "REKLAM ALANI";
    font-weight: 600;
}

body.info-dark .ad-slot__placeholder,
body.dark-theme .ad-slot__placeholder {
    background: #1e1e1e;
    border-color: #333;
    color: #555;
}