/* Стили для страницы пресс-релиза */
.press-release {
    padding: 6rem 0;
    background-color: var(--white);
}

.press-release-header {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.press-release-header::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.press-release-header time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.press-release-header time i {
    color: var(--primary-color);
}

.press-release-header h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.press-release-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Стили для элементов внутри контента */
.press-release-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.press-release-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 2.5rem 0 1.5rem;
}

.press-release-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 2rem 0 1rem;
}

.press-release-content ul,
.press-release-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.press-release-content li {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0.75rem;
}

.press-release-content blockquote {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--background-color);
    border-radius: 16px;
    position: relative;
}

.press-release-content blockquote::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.press-release-content blockquote p {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.press-release-content blockquote cite {
    font-size: 1rem;
    color: #666;
    font-style: normal;
}

.press-release-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 2rem 0;
}

.press-release-content figure {
    margin: 2rem 0;
}

.press-release-content figcaption {
    text-align: center;
    color: #666;
    font-size: 0.875rem;
    margin-top: 0.75rem;
}

/* Нижняя часть пресс-релиза */
.press-release-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.press-release-footer .share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-button.twitter {
    background: #1DA1F2;
}

.share-button.facebook {
    background: #4267B2;
}

.share-button.linkedin {
    background: #0077B5;
}

.share-button.vk {
    background: #4C75A3;
}

.share-button.ok {
    background: #EE8208;
}

.share-button.telegram {
    background: #0088cc;
}

.share-button.whatsapp {
    background: #25D366;
}

.share-button.copy-link {
    background: #666;
}

.share-button.copy-link.copied {
    background: #28a745;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.back-to-press {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.back-to-press:hover {
    gap: 1rem;
}

.back-to-press i {
    transition: transform 0.3s ease;
}

.back-to-press:hover i {
    transform: translateX(-4px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .press-release {
        padding: 4rem 0;
    }

    .press-release-header h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .press-release-content {
        padding: 0 1rem;
    }

    .press-release-content blockquote {
        padding: 1.5rem;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

    .share-button {
        width: 100%;
        justify-content: center;
    }
}

/* Адаптивная сетка для кнопок */
.share-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
    .share-buttons {
        grid-template-columns: 1fr;
    }
}