/* Single Press Release Template Styles */

/* Header Section - Back to News Link */
.single-press-release .press-release-header {
    padding: 169px 0 24px;
    
    @media screen and (max-width: 991px) {
        padding: 111px 0 20px;
    }
    
    @media screen and (max-width: 768px) {
        padding: 100px 0 16px;
    }
}

.single-press-release .back-to-news {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-scda-blue);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.2s ease-in-out;
    
    &:hover {
        color: var(--color-scda-midnight);
        
        svg {
            transform: translateX(-4px);
        }
    }
    
    svg {
        transition: transform 0.2s ease-in-out;
    }
}

/* Content Section */
.single-press-release .press-release-content {
    .post-date {
        display: block;
        margin-bottom: 24px;
        font-size: 1rem;
        font-weight: 700;
        color: var(--color-scda-blue);
        text-transform: uppercase;
        letter-spacing: 1.6px;
        
        @media screen and (max-width: 576px) {
            margin-bottom: 20px;
        }
    }
    
    .entry-title {
        margin: 0 0 40px;
        color: var(--color-scda-black);
        line-height: 1.3;
        
        @media screen and (max-width: 768px) {
            margin-bottom: 32px;
        }
        
        @media screen and (max-width: 576px) {
            margin-bottom: 24px;
        }
    }
    
    /* Content formatting */
    p {
        margin-bottom: 24px;
        line-height: 1.6;
        
        &:last-child {
            margin-bottom: 0;
        }
    }
    
    h1, h2, h3, h4, h5, h6 {
        margin-top: 40px;
        margin-bottom: 20px;
        line-height: 1.3;
        
        &:first-child {
            margin-top: 0;
        }
    }
    
    ul, ol {
        margin-bottom: 24px;
        padding-left: 32px;
        line-height: 1.6;
        
        li {
            margin-bottom: 12px;
        }
    }
    
    a {
        color: var(--color-scda-blue);
        text-decoration: underline;
        transition: 0.2s ease-in-out;
        
        &:hover {
            color: var(--color-scda-midnight);
        }
    }
    
    img {
        max-width: 100%;
        height: auto;
        margin: 24px 0;
    }
    
    blockquote {
        margin: 24px 0;
        padding: 20px 24px;
        border-left: 4px solid var(--color-scda-blue);
        background-color: var(--color-scda-beige-50, #FCF7F3);
        font-style: italic;
    }
}
