/* From The Office — View All Comments trigger */
.invp-comments-store { display: none; }

.comment-form-author .invp-view-all-comments {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 8px 14px;
    background: transparent;
    color: #1a3a6b;
    border: 2px solid #1a3a6b;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}
.comment-form-author .invp-view-all-comments:hover {
    background: #1a3a6b;
    color: #fff;
}
.comment-form-author .invp-view-all-comments:disabled {
    color: #999;
    border-color: #ccc;
    cursor: not-allowed;
}

/* From The Office — Comments Modal (copies .alert background pattern) */
.fto-comments-modal-container {
    background-color: rgb(243, 245, 244);
    background-image: url('../images/stars-left-white.svg');
    background-repeat: no-repeat;
    background-position: 0 top;
    background-size: contain;
    border-radius: 12px;
    width: 90vw;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    position: relative;
}

.fto-comments-modal-header {
    padding: 30px 40px;
    background: #1a3a6b;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fto-comments-modal-title {
    margin: 0 !important;
    color: #fff !important;
    font-size: 36px !important;
    font-weight: 700 !important;
}

.fto-comments-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.fto-comments-modal-close path { fill: #fff; }

.fto-comments-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 40px;
}

.fto-comments-modal-content .comment-item {
    padding: 24px 0;
    border-bottom: 1px solid #d1d5db;
}
.fto-comments-modal-content .comment-item:last-child { border-bottom: none; }

.fto-comments-modal-content .comment-author {
    margin: 0 0 12px !important;
    color: #1a3a6b !important;
    font-size: 26px !important;
    font-weight: 700 !important;
}

.fto-comments-modal-content .comment-content {
    margin: 0 !important;
    color: #333 !important;
    font-size: 22px !important;
    line-height: 1.6 !important;
}

@media (max-width: 767px) {
    .fto-comments-modal-container {
        background-position: left bottom;
        background-size: 150px auto;
    }
    .fto-comments-modal-title { font-size: 24px !important; }
    .fto-comments-modal-content { padding: 24px; }
    .fto-comments-modal-content .comment-author { font-size: 20px !important; }
    .fto-comments-modal-content .comment-content { font-size: 17px !important; }
}