.press-single-page {
    max-width: 1200px;
    margin: 180px auto;
    padding: 20px;
    color: var(--text);
}

/* Featured Image */
.press-featured-image img {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    margin-bottom: 30px;
}

/* Title & Date */
.press-title {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--text);
}

.press-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

/* Body */
.press-body p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.press-body blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    font-style: italic;
    color: #555;
    margin: 30px 0;
}

/* Tags */
.press-tags {
    margin-top: 40px;
}

.press-tags strong {
    font-weight: bold;
    margin-right: 10px;
}

.press-tags a {
    margin-right: 10px;
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
}

.press-tags a:hover {
    text-decoration: underline;
}

/* Related Articles */
.related-press {
    margin-top: 60px;
}

.related-press h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-item {
    background-color: #f5f5f5;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: background 0.3s;
}

.related-item:hover {
    background-color: #e0e0e0;
}

.related-item h4 {
    margin: 0;
    font-size: 18px;
}

.related-item p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .press-title {
        font-size: 28px;
    }

    .press-body p {
        font-size: 16px;
    }

    .press-featured-image img {
        height: 250px;
    }

    .related-press h2 {
        font-size: 20px;
    }

    .related-item h4 {
        font-size: 16px;
    }
}