/* single-ptaa_news.css */

.article-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.article-content-wrapper {
    font-family: Arial, sans-serif;
    width: 70%;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.article-sidebar {
    width: 30%;
    padding: 20px;
    background-color: #f4f4f4;
    border-left: 1px solid #ddd;
    box-sizing: border-box;
}

.article-h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #416ca3;
}

.article-metadata {
    margin-bottom: 10px;
}

.article-author, .article-date {
    font-family: 'Roboto Slab', sans-serif;
    display: inline;
    font-weight: bold;
    font-size: 1rem;
}

.metadata-separator {
    display: inline;
    margin: 0 5px;
}

.article-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px;
}

.embed-container {
    margin: 20px auto;
    text-align: center;
}

.article-summary {
    font-family: 'Roboto Slab', serif;
    font-size: 1rem;
    margin-top: 20px;
}

.article-body {
    line-height: 1.6;
    margin-bottom: 20px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    background-color: #416ca3;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1rem;
}

.back-btn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.back-btn:hover {
    background-color: #58a1ce;
    transform: scale(1.05);
}

.back-btn:hover i {
    transform: translateX(-3px);
}

.subscription-box, .social-links-box, .recent-articles-box {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.subscription-box h2, .social-links-box h2, .recent-articles-box h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #416ca3;
}

.subscription-box form input[type="email"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.subscribe-btn {
    width: 100%;
    padding: 10px;
    background-color: #416ca3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #58a1ce;
}

.news-social-link {
    display: block;
    margin-bottom: 10px;
    color: #416ca3;
    text-decoration: none;
    font-size: 1.2rem;
}

.news-social-link i {
    margin-right: 8px;
}

.news-social-link:hover {
    color: #58a1ce;
}

.recent-article {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.recent-article-image {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 5px;
    object-fit: cover;
}

.recent-article-link {
    color: #416ca3;
    text-decoration: none;
    font-size: 1rem;
}

.recent-article-link:hover {
    color: #58a1ce;
}

.success-message {
    color: #28a745;
    font-size: 1.2em;
    margin-top: 10px;
    text-align: center;
}

@media (max-width: 1200px) {
    .article-content-wrapper, .article-sidebar {
        width: 100%;
    }

    .article-sidebar {
        margin-top: 20px;
    }
}
