/* plg_content_odfaq - FAQ accordion. Native <details>/<summary> so it works with no
   JavaScript; odfaq.js adds the smooth open/close. Question tabs are shaded through the
   Our Dartmoor moorland palette. */
.odfaq { margin: 1.8rem 0; }
.odfaq-heading { font-size: 1.35rem; margin: 0 0 .9rem; color: #2f3a24; }

.odfaq-item {
    border-radius: 10px;
    overflow: hidden;
    margin: 0 0 .55rem;
    background: #fff;
    box-shadow: 0 1px 5px rgba(30, 40, 30, .09);
}
.odfaq-item summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding: .85rem 2.6rem .85rem 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    background: #5f6f3a;
    transition: filter .15s ease;
}
.odfaq-item summary::-webkit-details-marker { display: none; }
.odfaq-item summary:hover { filter: brightness(1.08); }
.odfaq-item summary:focus-visible { outline: 2px solid #fff; outline-offset: -5px; }
.odfaq-item summary::after {
    content: "+";
    position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
    font-size: 1.3rem; font-weight: 700; line-height: 1; color: rgba(255, 255, 255, .92);
}
.odfaq-item[open] summary::after { content: "\2212"; }  /* minus */

/* Various shades from the moorland palette, cycled across the tabs. nth-of-type counts
   only the <details> items, so a heading above them does not shift the cycle. */
.odfaq-item:nth-of-type(6n+1) summary { background: #5f6f3a; } /* green */
.odfaq-item:nth-of-type(6n+2) summary { background: #6d6a3c; } /* olive */
.odfaq-item:nth-of-type(6n+3) summary { background: #4f6a55; } /* sage */
.odfaq-item:nth-of-type(6n+4) summary { background: #7a6540; } /* bracken */
.odfaq-item:nth-of-type(6n+5) summary { background: #566b45; } /* moss */
.odfaq-item:nth-of-type(6n)   summary { background: #5b6660; } /* granite green */

/* .odfaq-answer is the animated (height) wrapper: keep it padding-free and clipped so it
   collapses fully to zero; the padding lives on the inner element. */
.odfaq-answer { overflow: hidden; }
.odfaq-answer-in { padding: .85rem 1.1rem 1rem; color: #3a4030; line-height: 1.55; background: #fff; }
.odfaq-answer-in p { margin: 0 0 .6rem; }
.odfaq-answer-in p:last-child { margin-bottom: 0; }
.odfaq-answer-in a { color: #35652f; font-weight: 600; }
.odfaq-answer-in a:hover { text-decoration: underline; }
