.telegram-section {
    width: 100%;
    padding: 20px 0;
}

.telegram-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.telegram-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px 14px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
}

/* Видео */
.telegram-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    margin-bottom: 10px;
}

.telegram-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    background: #000;
}

/* Заголовок поста */
h5.telegram-post-title {
    color: #000000 !important;
    font-weight: 700;
    margin: 6px 0 4px;
    line-height: 1.3;
}

/* Текст поста */
.telegram-text {
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;
}

/* Кнопки под постами */
.telegram-buttons-wrapper {
    margin-top: 18px;
}

.telegram-btn {
    display: inline-block;
    padding: 10px 26px;
    margin: 4px 6px;
    background-color: #2AABEE;
    color: #ffffff;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.3px;
}

.telegram-btn-secondary {
    display: inline-block;
    padding: 10px 26px;
    margin: 4px 6px;
    background-color: transparent;
    color: #fff8bb;
    font-weight: 500;
    border-radius: 999px;
    border: 1px solid #fff8bb;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.telegram-btn:hover {
    opacity: 0.9;
    transition: opacity 0.2s;
}

.telegram-btn-secondary:hover {
    background-color: rgba(255, 248, 187, 0.1);
    transition: background-color 0.2s;
}

.telegram-description {
    margin-top: 8px;
    font-size: 13px;
    color: #cccccc;
}