/* NEWS */
.news-section { padding: 48px 0; background-color: #F8FAF7; border-bottom: 1px solid #E8E8E8; }
.news-section .news-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.news-section .news-card { background-color: #FFFFFF; border: 1px solid #E8E8E8; border-radius: 10px; overflow: hidden; transition: transform 0.22s ease, box-shadow 0.22s ease; box-shadow: 0 1px 4px rgba(0,0,0,0.04); padding: 18px; }
.news-section .news-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.10); }
.news-section .news-img-wrap { overflow: hidden; border-radius: 6px; line-height: 0; margin-bottom: 14px; }
.news-section .news-img { display: block; width: 100%; height: 180px; object-fit: cover; transition: transform 0.45s ease; border-radius: 6px; }
.news-section .news-card:hover .news-img { transform: scale(1.05); }
.news-section .news-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.news-section .news-date { font-size: 12px; color: #999999; }
.news-section .news-tag { font-size: 10px; font-weight: 800; color: #5A8A3C; background-color: #EEF8E6; padding: 3px 8px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.6px; }
.news-section .news-title { font-size: 16px; font-weight: 800; color: #1A1A1A; margin-bottom: 8px; line-height: 1.35; transition: color 0.15s ease; }
.news-section .news-card:hover .news-title { color: #3F6828; }
.news-section .news-excerpt { font-size: 14px; color: #666666; line-height: 1.65; margin-bottom: 14px; }
.news-section .news-more-wrap { }
.news-section .news-readmore { font-size: 13px; font-weight: 700; color: #5A8A3C; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.news-section .news-readmore:hover { text-decoration: underline; }

@media (min-width: 768px) {
  .news-section .news-grid { grid-template-columns: repeat(3, 1fr); }
}

/* LEGAL PROVINCES */
.states-section { padding: 48px 0; border-bottom: 1px solid #E8E8E8; }
.states-section .states-intro { font-size: 15px; color: #444444; margin-bottom: 24px; line-height: 1.65; }

/* EVENTS TABLE */
.events-section { padding: 48px 0; background-color: #F8FAF7; border-bottom: 1px solid #E8E8E8; }
.events-section .table-scroller { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.events-section .events-table { width: 100%; min-width: 480px; border: 1px solid #E8E8E8; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.events-section .events-table thead tr { background-color: #111D11; }
.events-section .events-table th { padding: 13px 16px; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.85); text-align: left; letter-spacing: 0.5px; text-transform: uppercase; }
.events-section .events-table td { padding: 14px 16px; font-size: 14px; color: #1A1A1A; border-bottom: 1px solid #F0F0F0; transition: background-color 0.12s ease; }
.events-section .events-table tbody tr:hover td { background-color: #F2F9ED; }
.events-section .events-table .row-alt td { background-color: #F8F8F8; }
.events-section .events-table .event-name { font-weight: 700; }

/* FAQ */
.faq-section { padding: 48px 0; border-bottom: 1px solid #E8E8E8; }
.faq-section .faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid #E8E8E8; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.faq-section .faq-item { border-bottom: 1px solid #F0F0F0; }
.faq-section .faq-item:last-child { border-bottom: none; }
.faq-section .faq-trigger-wrap { }
.faq-section .faq-trigger { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 17px 20px; cursor: pointer; background-color: #FFFFFF; transition: background-color 0.15s ease; }
.faq-section .faq-trigger:hover { background-color: #F2F9ED; }
.faq-section .faq-item.open .faq-trigger { background-color: #F2F9ED; }
.faq-section .faq-q-text { font-size: 15px; font-weight: 700; color: #1A1A1A; flex: 1; }
.faq-section .faq-icon-wrap { flex-shrink: 0; display: flex; align-items: center; transition: transform 0.25s ease; }
.faq-section .faq-item.open .faq-icon-wrap { transform: rotate(180deg); }
.faq-section .faq-answer { display: block; max-height: 0; overflow: hidden; padding: 0 20px; background-color: #FAFAFA; border-top: 0 solid transparent; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-section .faq-item.open .faq-answer { max-height: 600px; padding: 6px 20px 18px; }
.faq-section .faq-answer p { font-size: 14px; color: #444444; line-height: 1.75; }

/* PROVINCE ACCORDION */
.states-section .province-accordion { display: flex; flex-direction: column; border: 1px solid #E8E8E8; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.states-section .province-item { border-bottom: 1px solid #F0F0F0; }
.states-section .province-item:last-child { border-bottom: none; }
.states-section .province-trigger { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 20px; cursor: pointer; background-color: #FFFFFF; transition: background-color 0.15s ease; user-select: none; }
.states-section .province-trigger:hover { background-color: #F2F9ED; }
.states-section .province-item.open .province-trigger { background-color: #F2F9ED; }
.states-section .province-name { font-size: 15px; font-weight: 700; color: #1A1A1A; }
.states-section .province-trigger-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.states-section .province-age-badge { font-size: 11px; font-weight: 700; color: #5A8A3C; background-color: #EEF8E6; padding: 2px 7px; border-radius: 3px; }
.states-section .province-chevron { transition: transform 0.22s ease; flex-shrink: 0; }
.states-section .province-item.open .province-chevron { transform: rotate(180deg); }
.states-section .province-panel { background-color: #FAFAFA; border-top: 1px solid #F0F0F0; }
.states-section .province-panel-inner { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.states-section .province-illustration { border-radius: 6px; overflow: hidden; line-height: 0; }
.states-section .province-illustration svg { width: 100%; max-width: 100%; height: auto; display: block; border-radius: 6px; }
.states-section .province-content-title { font-size: 16px; font-weight: 800; color: #1A1A1A; margin-bottom: 8px; }
.states-section .province-content-text { font-size: 14px; color: #444444; line-height: 1.75; margin-bottom: 0; }
.states-section .province-editors-pick { margin-top: 14px; border: 1px solid #C8E89A; border-radius: 8px; overflow: hidden; }
.states-section .pick-label-row { display: flex; align-items: center; gap: 6px; padding: 8px 14px; background-color: #EEF8E6; border-bottom: 1px solid #C8E89A; }
.states-section .pick-label-text { font-size: 10px; font-weight: 800; color: #5A8A3C; text-transform: uppercase; letter-spacing: 0.7px; }
.states-section .pick-body { padding: 14px; }
.states-section .pick-brand { display: inline-block; font-size: 12px; font-weight: 800; padding: 3px 10px; border-radius: 3px; margin-bottom: 8px; letter-spacing: 0.3px; }
.states-section .pick-reason { font-size: 13px; color: #444444; line-height: 1.65; margin-bottom: 10px; }
.states-section .pick-link { display: inline-block; font-size: 13px; font-weight: 700; color: #5A8A3C; text-decoration: none; border: 1px solid #5A8A3C; padding: 5px 14px; border-radius: 4px; transition: all 0.15s ease; }
.states-section .pick-link:hover { background-color: #5A8A3C; color: #FFFFFF; }

@media (min-width: 768px) {
  .states-section .province-panel-inner { flex-direction: row; align-items: flex-start; }
  .states-section .province-illustration { width: 200px; flex-shrink: 0; }
  .states-section .province-content { flex: 1; }
}
