/* Frontend Styles for Display Testimonies Plugin */

.display-testimonies-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.testimony-card {
    background: #fff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimony-content {
    display: flex;
    flex-direction: column;
}

.testimony-header {
    margin-bottom: 15px;
    position: relative;
}

.testimony-date {
    position: absolute;
    top: 0;
    right: 0;
    background: #2271b1;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.display-testimonies-container .testimony-card .testimony-content .testimony-header .testimony-title,
.display-testimonies-container .testimony-title,
.testimony-card .testimony-header .testimony-title {
    margin: 0 0 2px 0 !important;
    margin-top: 0 !important;
    margin-bottom: 2px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    font-size: 20px;
    font-weight: 600;
    color: #1d2327;
    padding-right: 140px; /* Make room for date */
}

.display-testimonies-container .testimony-card .testimony-content .testimony-header .testimony-author,
.display-testimonies-container .testimony-author,
.testimony-card .testimony-header .testimony-author {
    margin: 0 0 12px 0 !important;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    font-size: 14px;
    color: #646970;
    font-style: italic;
}

.display-testimonies-container .testimony-card .testimony-content .testimony-header .testimony-meta-group p {
    margin-bottom: 0 !important;
    line-height: 1.4 !important;
}

.testimony-text-content {
    font-size: 14px;
    line-height: 1.6;
    color: #50575e;
}

.testimony-text.truncated {
    max-height: 120px; /* Approx 6 lines */
    overflow: hidden;
    position: relative;
}

.testimony-text.truncated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, white);
}

.testimony-expand-btn {
    background: none;
    border: 1px solid #2271b1;
    color: #2271b1;
    cursor: pointer;
    padding: 8px 16px;
    margin-top: 10px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
}

.testimony-expand-btn:hover {
    background: #2271b1;
    color: #fff;
}
