/* ==========================================
   MADSON LAW - PREMIUM FAQ CARDS
========================================== */

.madson-faq-cards{
    display:flex;
    flex-direction:column;
}

/* ==========================
   FAQ CARD
========================== */

.madson-faq-cards .schema-faq-section{

    position:relative;

    margin:0 0 24px 0 !important;

    padding:30px 34px;

    background:#FBFAF7;

    border:none;

    border-radius:18px;

    box-shadow:0 12px 28px rgba(23,42,58,.06);

    overflow:hidden;

    transition:all .25s ease;
}

/* Elegant vertical accent */

.madson-faq-cards .schema-faq-section::before{

    content:"";

    position:absolute;

    left:0;

    top:18px;

    bottom:18px;

    width:5px;

    background:#0F5C4D;

    border-radius:8px;
}

.madson-faq-cards .schema-faq-section:last-child{
    margin-bottom:0 !important;
}

.madson-faq-cards .schema-faq-section:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 38px rgba(23,42,58,.10);
}

/* ==========================
   QUESTION
========================== */

.madson-faq-cards .schema-faq-question{

    display:block;

    margin:0 0 18px;

    padding:0;

    color:#172A3A;

    font-size:24px;

    font-weight:700;

    line-height:1.4;
}

.madson-faq-cards .schema-faq-question strong{

    color:#172A3A;

    font-weight:700;
}

/* ==========================
   ANSWER
========================== */

.madson-faq-cards .schema-faq-answer{

    margin:0;

    padding:0;

    color:#555555;

    font-size:17px;

    font-weight:400;

    line-height:1.85;
}

.madson-faq-cards .schema-faq-answer p{

    margin-bottom:16px;
}

.madson-faq-cards .schema-faq-answer:last-child{

    margin-bottom:0;
}

/* ==========================
   LINKS
========================== */

.madson-faq-cards a{

    color:#0F5C4D;

    font-weight:600;

    text-decoration:none;
}

.madson-faq-cards a:hover{

    color:#172A3A;

    text-decoration:underline;
}

/* ==========================
   MOBILE
========================== */

@media (max-width:768px){

    .madson-faq-cards .schema-faq-section{

        padding:24px 22px;

        margin-bottom:20px !important;
    }

    .madson-faq-cards .schema-faq-question{

        font-size:21px;

        margin-bottom:14px;
    }

    .madson-faq-cards .schema-faq-answer{

        font-size:16px;

        line-height:1.8;
    }

    .madson-faq-cards .schema-faq-section::before{

        top:16px;

        bottom:16px;
    }

}
/* Hide Fancier Author Box */
#ts-fab-below,
.ts-fab-wrapper {
    display: none !important;
}
/* ==========================================
   MADSON LAW - HOMICIDE FAQ CARDS
========================================== */

.madson-homicide-faq-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 50px;
    background: #F7F3EC;
}

/* Individual FAQ card */

.madson-homicide-faq-cards .schema-faq-section {
    position: relative;
    margin: 0 !important;
    padding: 28px 32px;
    overflow: hidden;
    border: 1px solid rgba(47, 111, 115, 0.18);
    border-radius: 16px;
    background: #FBFAF7;
    box-shadow: 0 12px 28px rgba(23, 42, 58, 0.06);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

/* Inset green accent */

.madson-homicide-faq-cards .schema-faq-section::before {
    position: absolute;
    top: 17px;
    bottom: 17px;
    left: 0;
    width: 5px;
    border-radius: 0 6px 6px 0;
    background: #0F5C4D;
    content: "";
}

.madson-homicide-faq-cards .schema-faq-section:hover {
    border-color: rgba(15, 92, 77, 0.45);
    box-shadow: 0 18px 38px rgba(23, 42, 58, 0.1);
    transform: translateY(-2px);
}

/* Question */

.madson-homicide-faq-cards .schema-faq-question {
    display: block;
    margin: 0 0 14px;
    padding: 0;
    color: #172A3A !important;
    font-size: 23px;
    font-weight: 700 !important;
    line-height: 1.4;
}

.madson-homicide-faq-cards .schema-faq-question strong {
    color: #172A3A !important;
    font-weight: 700 !important;
}

/* Answer */

.madson-homicide-faq-cards .schema-faq-answer {
    margin: 0;
    padding: 0;
    color: #555555 !important;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}

/* Links inside answers */

.madson-homicide-faq-cards .schema-faq-answer a {
    color: #0F5C4D;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.madson-homicide-faq-cards .schema-faq-answer a:hover {
    color: #172A3A;
}

/* Mobile */

@media (max-width: 700px) {
    .madson-homicide-faq-cards {
        gap: 16px;
        padding-bottom: 38px;
    }

    .madson-homicide-faq-cards .schema-faq-section {
        padding: 23px 22px;
    }

    .madson-homicide-faq-cards .schema-faq-question {
        margin-bottom: 12px;
        font-size: 20px;
    }

    .madson-homicide-faq-cards .schema-faq-answer {
        font-size: 16px;
        line-height: 1.75;
    }

    .madson-homicide-faq-cards .schema-faq-section::before {
        top: 14px;
        bottom: 14px;
    }
}
/* ==========================================
   TOP CONTACT BUTTONS
========================================== */

.top-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.top-contact-btn {
    display: block;
    width: 100%;
    padding: 12px 18px;
    text-align: center;
    text-decoration: none !important;
    font-weight: 600;
    line-height: 1.3;
    border-radius: 4px;
    box-sizing: border-box;

    background: #172A3A;
    color: #fff !important;
    border: 2px solid #172A3A;
}

.top-contact-btn:hover {
    opacity: 0.88;
}