/* --- CSS SPECIFIC FOR THIS ARTICLE --- */

/* Container for the entire article, scoped by fpt-article-special */
.fpt-article-special {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff; /* White background for the article box */
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto; /* Center the article box if it's a standalone section */
    max-width: 800px; /* Match the original max-width */
}

/* Article Header */
.fpt-article-special .article-header {
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.fpt-article-special .article-title {
    font-size: 2.4em;
    color: #0056b3; /* Primary FPT blue */
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.3;
}

.fpt-article-special .article-meta {
    text-align: center;
    font-size: 0.9em;
    color: #666;
}

.fpt-article-special .article-meta .article-author {
    margin-left: 15px;
    font-weight: bold;
}

/* Article Content Styling */
.fpt-article-special .article-content p {
    margin-bottom: 15px;
    color: #444;
}

.fpt-article-special .article-intro {
    font-size: 1.1em;
    font-style: italic;
    color: #555;
    border-left: 4px solid #007bff; /* Highlight for intro paragraph */
    padding-left: 15px;
    margin-bottom: 25px;
}

.fpt-article-special .article-subtitle {
    font-size: 1.8em;
    color: #0056b3; /* Primary FPT blue */
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 5px;
}

.fpt-article-special .article-sub-subtitle {
    font-size: 1.4em;
    color: #007bff; /* Secondary blue */
    margin-top: 20px;
    margin-bottom: 10px;
}

.fpt-article-special .article-list {
    padding-left: 25px;
    margin-bottom: 20px;
}

.fpt-article-special .article-list li {
    margin-bottom: 10px;
    color: #444;
}

.fpt-article-special .article-list li strong {
    color: #333;
}

.fpt-article-special .article-cta {
    background-color: #e9ecef;
    padding: 15px 20px;
    border-radius: 5px;
    margin: 25px 0;
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
}

.fpt-article-special .contact-info {
    background-color: #e9f5ff; /* Light blue background for contact */
    border: 1px solid #b3d7ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    text-align: center;
}

.fpt-article-special .contact-info p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.fpt-article-special .phone-number {
    color: #d9534f; /* Red color for phone number */
    font-weight: bold;
    font-size: 1.3em;
}

/* Links */
.fpt-article-special .link-primary {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.fpt-article-special .link-primary:hover {
    color: #0056b3;
    text-decoration: underline;
}

.fpt-article-special .link-secondary {
    color: #6c757d;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.fpt-article-special .link-secondary:hover {
    color: #495057;
    text-decoration: underline;
}

/* Highlight specific text */
.fpt-article-special .text-highlight {
    color: #28a745; /* Green highlight */
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
    display: block; /* Ensure it's on its own line */
}

/* Article Footer - Hashtags */
.fpt-article-special .article-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
    font-size: 0.95em;
    color: #555;
}

.fpt-article-special .article-tag {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 5px 12px;
    margin-right: 8px;
    margin-bottom: 8px;
    border-radius: 4px;
    font-size: 0.9em;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.fpt-article-special .article-tag:hover {
    background-color: #0056b3;
}

/* Responsive Adjustments (Applied only within the article context) */
@media (max-width: 768px) {
    .fpt-article-special {
        padding: 20px 25px;
    }
    .fpt-article-special .article-title {
        font-size: 1.8em;
    }
    .fpt-article-special .article-subtitle {
        font-size: 1.5em;
    }
    .fpt-article-special .article-sub-subtitle {
        font-size: 1.2em;
    }
    .fpt-article-special .contact-info {
        text-align: center;
    }
    .fpt-article-special .phone-number {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .fpt-article-special {
        padding: 15px;
    }
    .fpt-article-special .article-title {
        font-size: 1.6em;
    }
    .fpt-article-special .article-subtitle {
        font-size: 1.4em;
    }
    .fpt-article-special .article-sub-subtitle {
        font-size: 1.1em;
    }
    .fpt-article-special .article-meta {
        font-size: 0.8em;
    }
    .fpt-article-special .contact-info p, .fpt-article-special .article-cta {
        font-size: 1em;
    }
}