body {
    background: var(--athos-dark-blue);
}

.main-content {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
    padding: 3rem 2rem;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.back-link {
    display: inline-block;
    font-size: 1.0rem;
    margin-bottom: 2rem;
    transition: all 0.2s ease;
    color: var(--athos-light-blue-href-color);
    text-decoration: underline;
}

.back-link:hover {
    color: #ffffff;
}

.back-link::before {
    content: "\2190  ";  /* Unicode for left arrow, followed by space */
}

.press-header {
    margin-bottom: 3rem;
}

.press-date {
    color: var(--athos-yellow);
    font-size: 1.0rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 400;
}

.press-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-family: 'Trueno', sans-serif;
}

.press-source {
    font-size: 0.9rem;
    color: var(--athos-yellow);
    font-weight: 400;
    margin-bottom: 2rem;
}

.press-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 300;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.press-content p {
    margin-bottom: 1.5rem;
}

.quote {
    margin: 2rem 0;
    padding: 1.5rem 1.5rem;
    border-left: 4px solid var(--athos-bright-blue);
    background: rgba(42, 149, 255, 0.1);
    font-style: italic;
    position: relative;
}

.quote p {
    margin-bottom: 0;
}

.about-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(42, 149, 255, 0.3);
}

.about-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Trueno', sans-serif;
}

.about-section p {
    margin-bottom: 0;
}

.press-image {
    margin: 2.5rem 0;
    text-align: center;
}

.press-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.image-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.press-external-link {
    display: inline-block;
    color: var(--athos-bright-blue);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--athos-bright-blue);
    border-radius: 6px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.press-external-link:hover {
    background: var(--athos-bright-blue);
    color: #000;
}

@media (min-width: 1024px) {
    .press-content {
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 2rem 1rem;
    }

    .press-title {
        font-size: 1.8rem;
    }

    .press-content {
        font-size: 1rem;
    }
}