/* Стили для рекламы в ленте */
.lcab-advertisement {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.lcab-advertisement::before {
    content: 'Реклама';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.05);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
}

.lcab-advertisement__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.lcab-advertisement__content {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.lcab-advertisement__image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lcab-advertisement__image:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lcab-advertisement__iframe {
    width: 100%;
    min-height: 300px;
    border: none;
    border-radius: 8px;
}

.lcab-advertisement__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.lcab-advertisement__link:hover {
    text-decoration: none;
}

