.losst-ad-container {
    margin: 20px 0;
    position: relative;
    border: 1px solid #ff9950;
    border-radius: 8px;
    background-color: transparent;
    max-width: 100%;
    box-sizing: border-box;
}

.losst-ad-label {
    position: absolute;
    top: -12px;
    left: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #fff;
    padding: 0 8px;
    z-index: 1;
}

.losst-ad-content {
    padding: 20px 15px 15px 30px;
    border-radius: 0 0 8px 8px;
    margin-top: 10px;
}

.losst-ad-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.losst-ad-image-container {
    flex-shrink: 0;
    margin-right: 15px;
}

.losst-ad-image {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    border-radius:4px;
}

.losst-ad-image-svg {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
}

.losst-ad-text-container {
    flex: 1;
}

.losst-ad-text {
    font-size: inherit;
    color: inherit;
    margin: 0 0 12px 0;
    line-height: inherit;
    font-weight: inherit;
}

.losst-ad-link {
    text-decoration: underline;
    font-size: inherit;
    font-weight: inherit;
    transition: color 0.2s ease;
}

.losst-ad-link:hover {
    text-decoration: underline;
}

.losst-ad-link:focus {
    outline-offset: 2px;
}

@media screen and (max-width: 768px) {
    .losst-ad-container {
        margin: 15px 0;
        border-radius: 6px;
    }
    
    .losst-ad-label {
        font-size: 11px;
        top: -12px;
    }
    
    .losst-ad-content {
        padding: 18px 12px 12px 24px;
        border-radius: 0 0 6px 6px;
    }
    
    .losst-ad-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .losst-ad-image-container {
        margin-right: 0;
        align-self: center;
    }
    
    .losst-ad-image {
        max-width: 60px;
        max-height: 60px;
    }
    
    .losst-ad-image-svg {
        max-width: 60px;
        max-height: 60px;
    }
    
    .losst-ad-text {
        font-size: inherit;
    }
}

@media screen and (max-width: 480px) {
    .losst-ad-container {
        margin: 10px 0;
        border-radius: 5px;
    }
    
    .losst-ad-label {
        font-size: 10px;
        left: 12px;
        top: -12px;
    }
    
    .losst-ad-content {
        padding: 15px 10px 10px 20px;
        border-radius: 0 0 5px 5px;
    }
    
    .losst-ad-wrapper {
        flex-direction: column;
        gap: 8px;
    }
    
    .losst-ad-image-container {
        margin-right: 0;
        align-self: center;
    }
    
    .losst-ad-image {
        max-width: 50px;
        max-height: 50px;
    }
    
    .losst-ad-image-svg {
        max-width: 50px;
        max-height: 50px;
    }
    
    .losst-ad-text {
        font-size: inherit;
    }
}

@media (prefers-color-scheme: dark) {  
    .losst-ad-label {
        color: #aaa;
        background-color: #202124;
    }
}

@media print {
    .losst-ad-container {
        display: none;
    }
}
