/* Critical Roboto faces — woff only (no eot/ttf) to cut critical chain.
   Families kept to those referenced in template_styles.css. */

@font-face {
    font-family: 'robotobold';
    src: url('roboto-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'robotomedium';
    src: url('roboto-medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'roboto_condensedlight';
    src: url('robotocondensed-light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'roboto_ltregular';
    src: url('roboto-light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'robotoregular';
    src: url('roboto-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'roboto_thregular';
    src: url('roboto-thin.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* FAQ accordion styles (kept with font file for historical path) */
.faq-title {
    font-family: Roboto, robotoregular, arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 24px;
}
details{
    display: block;
    background: #fff;
    max-width: 850px;
    border: 1px solid #F3F3F3;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 5px;
}
summary::-webkit-details-marker{display:none;}
summary::-moz-list-bullet{list-style-type:none;}
summary::marker{display:none;}
summary {
    display: block;
    padding: 14px 20px;
    min-height: 20px;
    font-size: 1.4em;
    cursor: pointer;
    position: relative;
}
summary:before {
    top: 13px;
    right: 1.3em;
    color: transparent;
    background: url("down-chevron-svgrepo-com.svg");
    background-size: contain;
    width: 1em;
    height: 1em;
    content: "";
    position: absolute;
    transition: transform .5s;
}
details[open] > summary:before {
    transform: scale(1,-1);
}
summary ~ * {
    padding: 0 1em 10px 1.4em;
}
details[open] summary ~ *{
    animation: sweep .5s ease-in-out;
}
@keyframes sweep {
    0%    {opacity: 0;}
    100%  {opacity: 1;}
}
summary:focus {
    outline:0;
    box-shadow: inset 0 0 1px rgba(0,0,0,0.3), inset 0 0 2px rgba(0,0,0,0.3);
}
