/* aber-letter.css */

/* Hero Section */
.letter-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a224d 100%);
    padding: 120px 20px 60px;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.letter-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.letter-label-tag {
    display: inline-block;
    background: rgba(240, 210, 140, 0.15); /* secondary-color with opacity */
    color: var(--secondary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(240, 210, 140, 0.3);
}

.letter-hero-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Article Content */
.letter-article {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.letter-article-inner {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.letter-article-inner p {
    margin-bottom: 1.5rem;
    text-align: left;
}

.letter-article-inner p:last-child {
    margin-bottom: 0;
}

/* Option A Highlight */
.aber-highlight-text {
    color: inherit;
    font-weight: 600;
}

/* Signature Block */
.aber-signature {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.aber-sign-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.2rem !important;
}

.aber-sign-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.2rem !important;
}

.aber-sign-org {
    font-size: 1.05rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1rem !important;
}

.aber-sign-address {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .letter-hero {
        padding: 100px 20px 50px;
    }
    
    .letter-hero-headline {
        font-size: 2.5rem;
    }

    .letter-article-inner {
        font-size: 1.05rem;
    }
}
