/* Benchmarks Page Specific Styles */

.benchmark-link {
    color: #4a6fa0;
    text-decoration: underline;
}

.section.section-offset .section-title {
    margin-bottom: 60px;
}

.section.section-offset .section-title .section-subtitle {
    margin-bottom: 0;
}

.benchmark-grid {
    display: block;
}

.benchmark-card h3 {
    margin-bottom: 16px;
    color: #111111;
}

.benchmark-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.benchmark-card__header h3 {
    margin: 0;
}

.benchmark-toggle {
    border: none;
    background: none;
    color: #1f2937;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-left: auto;
}

.benchmark-toggle:hover {
    background-color: #f3f4f6;
    transform: translateY(-1px);
}

.benchmark-toggle i {
    display: block;
    line-height: 1;
    font-size: 1.1rem;
    color: #1f2937;
}

.benchmark-card h4 {
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #111111;
}

.benchmark-card h5 {
    margin-top: 16px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #1f2937;
}

.benchmark-card p {
    margin-bottom: 14px;
    color: #4b5563;
}

.benchmark-card ul {
    padding-left: 20px;
    margin: 0 0 14px;
    line-height: 1.6;
    color: #4b5563;
}

.benchmark-card li + li {
    margin-top: 8px;
}

.benchmark-details {
    transition: max-height 0.25s ease, opacity 0.25s ease;
}

.benchmark-details--collapsed {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
}

.benchmark-details--expanded {
    max-height: none;
    visibility: visible;
    opacity: 1;
}
