/*
Theme Name: MyWiki Child Theme
Author: 
Description: MyWiki Child Theme
Version: 1.0
Template: mywiki

This is the child theme for MyWiki theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/
 
 
/* =========================
   SECTION WRAPPER
========================= */

.mw-custom-info-section,
.mw-faq-section{
    margin-top:32px;
    padding:32px;
    background:#fff;
    border:1px solid rgba(0,0,0,.06);
    border-radius:20px;
}

/* =========================
   SECTION HEADING
========================= */

.mw-section-heading{
    margin-bottom:24px;
}

.mw-section-heading h2{
    margin:0 0 10px;
    font-size:30px;
    line-height:1.2;
    font-weight:700;
    letter-spacing:-0.02em;
}

.mw-section-heading p{
    margin:0;
    font-size:16px;
    line-height:1.7;
    color:rgba(0,0,0,.65);
    max-width:fit-content;
}

/* =========================
   CUSTOM HTML CONTENT
========================= */

.mw-custom-html-content{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* =========================
   INFO BOX
========================= */

.mw-info-box{
    padding:28px;
    background:#f7f8fa;
    border-radius:16px;
}

.mw-info-box h3{
    margin:0 0 14px;
    font-size:26px;
    font-weight: bold;
    line-height:1.3;
}

.mw-info-box p{
    margin:0;
    line-height:1.8;
    color:rgba(0,0,0,.72);
}

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

.mw-faq-accordion{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.mw-faq-item{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:14px;
    overflow:hidden;
    transition:.2s ease;
}

.mw-faq-item.active{
    border-color:rgba(0,0,0,.14);
}

.mw-faq-question{
    width:100%;
    padding:20px 22px;
    background:none;
    border:none;
    text-align:left;
    cursor:pointer;

    font-size:17px;
    line-height:1.5;
    font-weight:600;
}

.mw-faq-answer{
    display:none;
    padding:0 22px 22px;
}

.mw-faq-answer p{
    margin:0;
    line-height:1.8;
    color:rgba(0,0,0,.72);
}

.mw-faq-item.active .mw-faq-answer{
    display:block;
}

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

@media(max-width:768px){

    .mw-custom-info-section,
    .mw-faq-section{
        padding:24px;
        border-radius:18px;
    }

    .mw-section-heading{
        margin-bottom:20px;
    }

    .mw-section-heading h2{
        font-size:24px;
    }

    .mw-info-box{
        padding:22px;
    } 

    .mw-faq-question{
        padding:18px;
        font-size:16px;
    }

    .mw-faq-answer{
        padding:0 18px 18px;
    }

}
.mw-cat-icon2 {
	width: max-content;
	height: auto;
	border-radius: var(--mw-radius-sm);
	background: var(--mw-accent-soft);
	color: var(--mw-accent); 
	padding: 5px 15px 1px 15px;
	margin-bottom: 15px;
}
.mw-page-meta, .mw-archive-item .mw-archive-meta {
	display: none; 
}
.mw-custom-info-section p, .mw-info-box p {
    margin: 20px 0;
}
.mw-faq-answer p {
  margin-bottom: 12px; 
}
.mw-faq-item.active h3 {
  color: #0f3a82;
  font-weight: bold;
}