/* Comments Section Styles */
.ig-comments-section {
    background: white;
    border-top: 4px solid #0A1628;
    padding: 40px;
    margin: 40px auto;
    max-width: 800px;
}

/* Header with Logo and Social */
.ig-comments-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E0E0E0;
}

.ig-comments-section__logo img {
    max-width: 120px;
    height: auto;
}

.ig-comments-section__social {
    display: flex;
    gap: 12px;
}

.ig-comments-section__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0A1628;
    color: white;
    border-radius: 50%;
    transition: all 0.2s;
}

.ig-comments-section__social-link:hover {
    background: #00B4D8;
    color: white;
    transform: translateY(-2px);
}

.ig-comments-section__social-link svg {
    width: 18px;
    height: 18px;
}

/* Title Area */
.ig-comments-section__title-area {
    margin-bottom: 16px;
}

.ig-comments-section__title {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0A1628;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.ig-comments-section__subtitle {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 18px;
    font-style: italic;
    color: #00B4D8;
    margin: 0;
}

/* Policy */
.ig-comments-section__policy {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 14px;
    color: #6A6A6A;
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 24px 0;
}

.ig-comments-section__policy a {
    color: #31487A;
    text-decoration: none;
}

.ig-comments-section__policy a:hover {
    text-decoration: underline;
}

/* Comment Count */
.ig-comments-section__count {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0A1628;
    padding: 16px 0;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 24px;
}

.ig-comments-section__count-number {
    color: #00B4D8;
}

/* Comments List */
.ig-comments-section__list {
    margin-bottom: 32px;
}

.ig-comments-section__comment {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #E0E0E0;
}

.ig-comments-section__comment:last-child {
    border-bottom: none;
}

.ig-comments-section__comment-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.ig-comments-section__comment-content {
    flex: 1;
}

.ig-comments-section__comment-meta {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.ig-comments-section__comment-author {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #0A1628;
}

.ig-comments-section__comment-date {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #6A6A6A;
}

.ig-comments-section__comment-text {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 15px;
    color: #4A4A4A;
    line-height: 1.7;
}

.ig-comments-section__comment-text p {
    margin: 0 0 12px 0;
}

.ig-comments-section__comment-text p:last-child {
    margin-bottom: 0;
}

.ig-comments-section__comment-reply {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #31487A;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
}

.ig-comments-section__comment-reply:hover {
    color: #00B4D8;
}

.ig-comments-section__no-comments {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #6A6A6A;
    text-align: center;
    padding: 24px;
    background: #F5F5F5;
    border-radius: 8px;
}

/* Comment Form */
.ig-comments-section__form {
    padding-top: 24px;
    border-top: 1px solid #E0E0E0;
}

.ig-comments-section__form-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0A1628;
    margin: 0 0 16px 0;
}

.ig-comments-section__form .comment-form {
    margin: 0;
}

.ig-comments-section__form .comment-form-comment {
    margin: 0 0 16px 0;
}

.ig-comments-section__form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 15px;
    line-height: 1.6;
    resize: vertical;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.ig-comments-section__form textarea:focus {
    outline: none;
    border-color: #00B4D8;
}

.ig-comments-section__form textarea::placeholder {
    color: #999;
}

.ig-comments-section__submit,
.ig-comments-section__form .submit {
    background: #0A1628;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.ig-comments-section__submit:hover,
.ig-comments-section__form .submit:hover {
    background: #31487A;
}

/* Gate for non-paid users */
.ig-comments-section__gate {
    background: linear-gradient(180deg, #E8F4F8 0%, #D4EBF3 100%);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
}

.ig-comments-section__gate-text {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    color: #4A4A4A;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.ig-comments-section__gate-text strong {
    color: #0A1628;
}

.ig-comments-section__gate-text a {
    color: #00B4D8;
    text-decoration: none;
    font-weight: 600;
}

.ig-comments-section__gate-text a:hover {
    text-decoration: underline;
}

.ig-comments-section__gate-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.ig-comments-section__btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    transition: all 0.2s;
    min-width: 120px;
    text-align: center;
}

.ig-comments-section__btn--primary {
    background: #0A1628;
    color: white;
}

.ig-comments-section__btn--primary:hover {
    background: #31487A;
    color: white;
}

.ig-comments-section__btn--secondary {
    background: white;
    color: #0A1628;
    border: 2px solid #0A1628;
}

.ig-comments-section__btn--secondary:hover {
    background: #0A1628;
    color: white;
}

/* Responsive */
@media (max-width: 600px) {
    .ig-comments-section {
        padding: 24px 20px;
        margin: 30px 0;
    }

    .ig-comments-section__header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .ig-comments-section__title {
        font-size: 24px;
    }

    .ig-comments-section__comment {
        flex-direction: column;
        gap: 12px;
    }

    .ig-comments-section__comment-avatar img {
        width: 40px;
        height: 40px;
    }

    .ig-comments-section__gate-actions {
        flex-direction: column;
        align-items: center;
    }

    .ig-comments-section__btn {
        width: 100%;
        max-width: 200px;
    }
}
