/* Advertorial 2 Template Styles */
/* Uses Inter font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset */
.adv2-wrap *,
.adv2-wrap *::before,
.adv2-wrap *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.adv2-wrap {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #ffffff;
}

/* Header Nav Bar */
.adv2-header {
    background-color: #2d5f4f;
    color: white;
}

.adv2-nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.adv2-nav-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.adv2-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.adv2-nav-links li {
    list-style: none;
}

.adv2-nav-links a {
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: text-decoration 0.2s;
}

.adv2-nav-links a:hover {
    text-decoration: underline;
}

.adv2-subscribe-btn {
    padding: 6px 16px;
    border: 1px solid white;
    border-radius: 4px;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.adv2-subscribe-btn:hover {
    background-color: white;
    color: #2d5f4f;
}

/* Main Content Area */
.adv2-main {
    flex: 1;
}

.adv2-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 16px;
}

.adv2-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .adv2-content-grid {
        grid-template-columns: 1fr 300px;
    }
}

/* Article */
.adv2-article-wrapper {
    max-width: 100%;
}

.adv2-article {
    max-width: none;
}

.adv2-article-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.adv2-article-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    color: #000;
}

.adv2-article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.adv2-meta-info {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
}

.adv2-share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.adv2-share-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.adv2-share-twitter:hover {
    color: #60a5fa;
}

.adv2-share-facebook:hover {
    color: #2563eb;
}

.adv2-icon {
    width: 20px;
    height: 20px;
}

.adv2-icon-small {
    width: 16px;
    height: 16px;
}

/* Article Image */
.adv2-article-image {
    margin-bottom: 32px;
    border-radius: 8px;
    overflow: hidden;
}

.adv2-article-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Content - Rich Text */
.adv2-article-content {
    color: #000;
    line-height: 1.75;
    font-family: 'Inter', sans-serif;
}

.adv2-article-content h2 {
    font-size: 24px;
    font-weight: 800;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #000;
    font-family: 'Inter', sans-serif;
}

.adv2-article-content p {
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

.adv2-article-content ul {
    list-style-position: inside;
    list-style-type: disc;
    padding-left: 24px;
    margin-bottom: 24px;
}

.adv2-article-content ul li {
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    display: list-item;
    list-style-type: disc;
}

.adv2-article-content ol {
    list-style-position: inside;
    list-style-type: decimal;
    padding-left: 24px;
    margin-bottom: 24px;
}

.adv2-article-content ol li {
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    display: list-item;
    list-style-type: decimal;
}

.adv2-article-content strong,
.adv2-article-content b {
    font-weight: 600;
}

.adv2-article-content em,
.adv2-article-content i {
    font-style: italic;
}

.adv2-article-content a {
    color: #2d5f4f;
    text-decoration: underline;
}

.adv2-article-content a:hover {
    color: #1a3d32;
}

/* Comments Section (What People Are Saying - inline in article) */
.adv2-comments-section {
    margin: 32px 0;
    user-select: none;
    pointer-events: none;
}

.adv2-comment-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.adv2-comment-header {
    display: flex;
    gap: 12px;
}

.adv2-comment-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e5e7eb;
}

.adv2-comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adv2-comment-info {
    flex: 1;
}

.adv2-comment-meta {
    margin-bottom: 4px;
}

.adv2-comment-author {
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.adv2-comment-time {
    color: #6b7280;
    font-size: 14px;
    margin-left: 8px;
    font-family: 'Inter', sans-serif;
}

.adv2-comment-text {
    color: #1f2937;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.adv2-comment-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #6b7280;
}

.adv2-comment-action {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.adv2-comment-action:hover {
    color: #2563eb;
}

.adv2-comment-likes {
    margin-top: 8px;
    font-size: 14px;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
}

.adv2-likes-count {
    font-weight: 600;
}

/* CTA Button */
.adv2-cta-wrap {
    margin: 40px 0;
    text-align: center;
}

.adv2-cta-button {
    display: block;
    width: 100%;
    padding: 22px 40px;
    background-color: #2d5f4f;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    transition: background-color 0.2s;
}

.adv2-cta-button:hover {
    background-color: #234239;
    color: #fff;
    text-decoration: none;
}

/* Bottom Comment Section (Below Article) */
.adv2-comments-main {
    margin-top: 48px;
}

.adv2-comments-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
}

.adv2-comment-form {
    margin-bottom: 32px;
}

.adv2-comment-textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    resize: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.adv2-comment-textarea:focus {
    border-color: #2d5f4f;
    box-shadow: 0 0 0 3px rgba(45, 95, 79, 0.1);
}

.adv2-comment-form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.adv2-post-comment-btn {
    padding: 8px 24px;
    background-color: #2d5f4f;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.adv2-post-comment-btn:hover {
    background-color: #234239;
}

.adv2-comments-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.adv2-comment {
    display: flex;
    gap: 16px;
}

.adv2-comment-avatar-wrapper {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e5e7eb;
}

.adv2-comment-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adv2-comment-body {
    flex: 1;
}

.adv2-comment-user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.adv2-comment-username {
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.adv2-comment-timestamp {
    font-size: 14px;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
}

.adv2-comment-content {
    color: #4b5563;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.adv2-like-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: color 0.2s;
}

.adv2-like-btn:hover {
    color: #2d5f4f;
}

/* Sidebar */
.adv2-sidebar {
    position: sticky;
    top: 32px;
    align-self: start;
}

.adv2-sidebar-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.adv2-sidebar-article {
    margin-bottom: 16px;
    cursor: pointer;
}

.adv2-sidebar-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 8px;
    overflow: hidden;
    border-radius: 4px;
}

.adv2-sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.adv2-sidebar-article:hover .adv2-sidebar-image img {
    transform: scale(1.05);
}

.adv2-sidebar-category {
    font-size: 12px;
    color: #2d5f4f;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.adv2-sidebar-article-title {
    font-size: 14px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    transition: text-decoration 0.2s;
}

.adv2-sidebar-article:hover .adv2-sidebar-article-title {
    text-decoration: underline;
}

/* Footer */
.adv2-footer {
    background-color: #1a1a1a;
    color: white;
    margin-top: 64px;
}

.adv2-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 16px;
}

.adv2-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .adv2-footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.adv2-footer-heading {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.adv2-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.adv2-footer-links li {
    font-size: 14px;
    display: list-item;
    list-style: none;
}

.adv2-footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
    font-family: 'Inter', sans-serif;
}

.adv2-footer-links a:hover {
    color: white;
}

.adv2-footer-disclosure {
    font-size: 12px;
    line-height: 1.6;
    color: #9ca3af;
    font-family: 'Inter', sans-serif;
    margin-bottom: 24px;
    text-align: left;
}

.adv2-footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
    font-family: 'Inter', sans-serif;
}

.adv2-footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.adv2-footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
    font-family: 'Inter', sans-serif;
}

.adv2-footer-bottom-links a:hover {
    color: white;
}

.adv2-footer-bottom-links span {
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
    .adv2-article-title {
        font-size: 28px;
    }

    .adv2-nav-links {
        display: none;
    }

    .adv2-article-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Hide date, read time, bullets, and share buttons — keep only author name */
    .adv2-meta-info span:not(:first-child) {
        display: none;
    }

    .adv2-share-buttons {
        display: none;
    }
}
