/*
Theme Name:         Angel Group
Theme URI:          http://
Description:        Bootstrap 3 based WordPress theme for Angel Group.
Version:            1.0.0
Author:             Robert Bokori
Author URI:         http://robertbokori.com
*/

/* FAQ Section */
.faq-section {
    padding: 2.5rem 0;
    background-color: #f5f5f5;
    margin-top: 4rem;
}
.single-post .faq-section{
  margin-top: 0;
}

.faq-title {
    text-align: center;
    color: #034760;
    font-size: 28px;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-list {
    /*max-width: 860px;*/
    margin: 0 auto;
    padding: 0;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 8px;
    border-radius: 3px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.faq-question {
    padding: 18px 50px 18px 20px;
    color: #034760;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    margin: 0;
    transition: background-color 0.2s ease;
    list-style: none;
    user-select: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #034760;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-question:hover {
    background-color: #f0f7fa;
}

.faq-item.active .faq-question {
    background-color: #034760;
    color: #ffffff;
}

.faq-item.active .faq-question::after {
    color: #ffffff;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    margin: 0;
    color: #444444;
    font-size: 15px;
    line-height: 1.7;
    background: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 18px 20px;
    border-top: 1px solid #e0e0e0;
}


.post-share-links {
    display: flex;
    gap: 10px;
}
.post-share-links .share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #333;
    font-size: 16px;
    text-decoration: none;
    transition: background-color .2s ease;
}
.post-share-links .share-link:hover {
    background: #ddd;
}


.post-sidebar {
  flex: 1 1 100%;
}

.post-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.post-main {
  flex: 1 1 100%;
  min-width: 0;
}

/* Mobile order: main content, then right sidebar (form), then left sidebar (carousel) */
.post-main {
  order: 1;
}

.post-sidebar-right {
  order: 2;
}

.post-sidebar-left {
  order: 3;
}

@media (min-width: 768px) {
  .post-sidebar {
    flex: 0 0 calc(25% - 9px);
    max-width: calc(25% - 9px);
    min-width: 0;
    order: 0; /* reset to DOM order: left sidebar, main, right sidebar */
  }

  .post-main {
    flex: 1 1 calc(50% - 6px);
    max-width: calc(50% - 6px);
    min-width: 0;
    width: 0;
    order: 0;
  }
}