.elementor-1012 .elementor-element.elementor-element-f674bd9{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-a4285b3 *//* ===== ADJUSTABLE ===== */
:root {
    --coa-max-width: 640px;
    --coa-lib-gap: 14px;
    --coa-col-gap: 16px;
    --coa-per-row: 3;
    --coa-panel-pad: 22px;
    --coa-card-radius: 14px;
    --coa-radius: 14px;
    --coa-panel-bg: #F4F4F4;
    --coa-img-ratio: 3 / 4;      /* uniform card image shape — lower = taller */
    --coa-label-bg: #1A1A1A;
}
/* ====================== */

.volara-coa-lib {
    max-width: var(--coa-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--coa-lib-gap);
}
.coa-item {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}
.coa-head {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    background: #1A1A1A;
    padding: 18px 24px;
    border-radius: var(--coa-radius);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: border-radius 0.2s ease;
}
.coa-head::-webkit-details-marker { display: none; }
.coa-item[open] .coa-head {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.coa-head::after {
    content: "";
    flex: 0 0 auto;
    width: 18px;
    height: 11px;
    margin-left: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='11' viewBox='0 0 18 11'%3E%3Cpath d='M1 1l8 8 8-8' stroke='%23FFFFFF' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
    transition: transform 0.25s ease;
}
.coa-item[open] .coa-head::after { transform: rotate(180deg); }

.coa-body {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    align-items: stretch;
    background: var(--coa-panel-bg);
    padding: var(--coa-panel-pad);
    gap: var(--coa-col-gap);
    border-bottom-left-radius: var(--coa-radius);
    border-bottom-right-radius: var(--coa-radius);
}

/* Card */
.coa-strength {
    flex: 0 0 calc((100% - (var(--coa-per-row) - 1) * var(--coa-col-gap)) / var(--coa-per-row)) !important;
    max-width: calc((100% - (var(--coa-per-row) - 1) * var(--coa-col-gap)) / var(--coa-per-row));
    display: flex;
    flex-direction: column;
    border-radius: var(--coa-card-radius);
    overflow: hidden;
    background: #FFFFFF;
}

/* Image area — fixed uniform ratio for ALL cards */
.coa-strength a {
    display: block;
    width: 100%;
    aspect-ratio: var(--coa-img-ratio);
    line-height: 0;
    overflow: hidden;
    background: #FFFFFF;
}
.coa-img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* crop to fill — no letterbox, no height variance */
    object-position: top;   /* anchor to top so the report header stays visible */
    display: block;
    border: none;
    border-radius: 0;
}

/* Label bar — flush under image */
.coa-strength-label {
    display: block;
    background: var(--coa-label-bg);
    color: #FFFFFF;
    font-family: "DM Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    padding: 12px 8px;
    line-height: 1;
}

@media (max-width: 600px) {
    .coa-body { padding: 14px; gap: 8px; }
    .coa-strength { border-radius: 8px; }
    .coa-strength-label { font-size: 9px; padding: 9px 4px; letter-spacing: 0.04em; }
}/* End custom CSS */