/* Main Container */
.clean-announcement-page {
    padding: 50px 0;
    background-color: #fcfcfc;
    min-height: 600px;
}

.clean-card {
    background: #fff;
    padding: 50px; /* Increased padding slightly since badge is gone */
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border-radius: 4px;
}

/* 1. Title */
.clean-title {
    font-family: 'Segoe UI', sans-serif;
    font-size: 28px; /* Slightly larger */
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.3;
    text-transform: uppercase;
    border-left: 5px solid #30b5d9; /* Added a small teal accent bar on the left */
    padding-left: 15px;
}

/* 2. Body Text */
.clean-body {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.clean-body p {
    margin-bottom: 15px;
}

/* 3. Info Grid */
.info-grid {
    margin-bottom: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.info-item {
    margin-bottom: 15px;
}

.info-label {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin-bottom: 3px;
}

.info-value {
    display: block;
    font-size: 16px;
    color: #30b5d9; /* THEME COLOR (Teal) */
    font-weight: 500;
}

.clean-divider {
    border: 0;
    border-top: 1px solid #eaeaea;
    margin: 30px 0;
}

/* 4. Button */
.action-area {
    margin-bottom: 20px;
}

.clean-action-btn {
    display: inline-block;
    background-color: #30b5d9;
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s;
    box-shadow: 0 2px 5px rgba(48, 181, 217, 0.3);
}

.clean-action-btn:hover {
    background-color: #269ec0;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Back Link */
.back-link-container {
    margin-top: 40px;
}

.clean-back-link {
    color: #888;
    font-size: 13px;
    text-decoration: none;
}

.clean-back-link:hover {
    text-decoration: underline;
}