/* Communications Resource Center Styles */

/* Container */
.comms-resource-center {
    background: #E8EDF2;
/*     min-height: 100vh; */
    padding: 0;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}
.text-purple-600{
	color:oklch(55.8% .288 302.321);
}
.text-pink-600 {
    color: oklch(59.2% .249 .584);
}
.text-orange-600 {
    color: oklch(64.6% .222 41.116);
}
/* Header */
.comms-header {
    background: #005A8C;
    color: white;
    padding: 50px 20px;
    margin-bottom: 50px;
}

.comms-header h1 {
    font-size: 2.25rem;
    margin: 0 0 8px 0;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.comms-header p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
}

/* Accordion */
.comms-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 80px;
}

.accordion-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Accordion Header */
.accordion-header {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
}

.accordion-header:hover {
    background: #FAFBFC;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.icon-purple { 
    background: #F3E8FF;
    color: #9333EA;
}
.icon-pink { 
    background: #FCE7F3;
    color: #DB2777;
}
.icon-blue { 
    background: #DBEAFE;
    color: #2563EB;
}
.icon-orange { 
    background: #FFF7ED;
    color: #EA580C;
}
.icon-green { 
    background: #D1FAE5;
    color: #059669;
}

.text {
    text-align: left;
}

.accordion-header h3 {
    margin: 0 0 4px 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    letter-spacing: -0.2px;
}

.accordion-header p {
    margin: 0;
    font-size: 0.9375rem;
    color: #6B7280;
    font-weight: 400;
}

.arrow {
    transition: transform 0.25s ease;
    color: #9CA3AF;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.accordion-header[aria-expanded="true"] .arrow {
    transform: rotate(180deg);
}

/* Accordion Content */
.accordionno-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.accordion-header[aria-expanded="true"] + .accordionno-content {
    max-height: 5000px;
}

.accordion-inner {
    padding: 28px 28px 32px;
    border-top: 1px solid #E5E7EB;
    background: #FAFBFC;
}

/* Simple Links */
.simple-links-grid {
    display: grid;
    gap: 12px;
	text-align:left;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.15s;
    border: 1px solid #E5E7EB;
}

.link-card:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
    transform: translateX(2px);
}

.link-icon {
    font-size: 22px;
}

.link-content h4 {
    margin: 0 0 3px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.link-content p {
    margin: 0;
    font-size: 0.875rem;
    color: #6B7280;
}

/* Tips Box */
.tips-box {
    background: white;
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 24px;
    border: 1px solid #E5E7EB;
}

.tips-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.tips-icon {
    font-size: 22px;
}

.tips-header h4 {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #111827;
}

.tips-list {
    margin: 0;
    padding-left: 20px;
}

.tips-list li {
    margin-bottom: 10px;
    color: #374151;
    font-size: 0.9375rem;
    line-height: 1.6;
	text-align :left;
}

/* Videos Grid */
.videos-grid {
    display: grid;
/*     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
	grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.video-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.15s;
    border: 1px solid #E5E7EB;
}

.video-card:hover {
    background: #FFF7ED;
    border-color: #FED7AA;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.video-icon {
    font-size: 22px;
}

.video-content h4 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.video-meta {
    display: flex;
    gap: 12px;
    font-size: 0.8125rem;
    color: #6B7280;
}

/* Do's & Don'ts */
.dos-donts-section {
    margin-bottom: 32px;
}

.dos-donts-section h3 {
    margin: 0 0 20px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.dos-donts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dos-column,
.donts-column {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.dos-title {
    color: #059669;
    margin: 0 0 16px 0;
    font-size: 1.0625rem;
    font-weight: 600;
}

.donts-title {
    color: #DC2626;
    margin: 0 0 16px 0;
    font-size: 1.0625rem;
    font-weight: 600;
}

.dos-list,
.donts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dos-list li,
.donts-list li {
    padding: 8px 0;
    color: #374151;
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Request Guidance */
.request-guidance {
    margin-bottom: 32px;
}

.request-guidance h3 {
    margin: 0 0 20px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.guidance-category {
    margin-bottom: 20px;
    background: white;
    padding: 18px 20px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.badge-red { 
    background: #FEE2E2; 
    color: #991B1B; 
}
.badge-orange { 
    background: #FFEDD5; 
    color: #9A3412; 
}
.badge-green { 
    background: #D1FAE5; 
    color: #065F46; 
}

.guidance-category ul {
    list-style: none;
    padding-left: 18px;
    margin: 0;
}

.guidance-category li {
    padding: 6px 0;
    color: #374151;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.guidance-category li:before {
    content: "•";
    margin-right: 10px;
    color: #9CA3AF;
}

/* Resources */
.resources-section {
    margin-bottom: 32px;
}

.resources-section h3 {
    margin: 0 0 20px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.resources-grid {
    display: grid;
    gap: 12px;
	text-align: left;
}

.resource-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.15s;
    border: 1px solid #E5E7EB;
}

.resource-card:hover {
    background: #F0FDF4;
    border-color: #BBF7D0;
    transform: translateX(2px);
}

.resource-icon {
    font-size: 22px;
}

.resource-content h4 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.resource-content p {
    margin: 0 0 8px 0;
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.5;
}

.file-info {
    font-size: 0.8125rem;
    color: #9CA3AF;
}

/* Footer Contact Section */
.comms-footer {
    text-align: center;
    padding: 40px 20px 60px;
    background: #E8EDF2;
}

.comms-footer p {
    margin: 0;
    font-size: 0.9375rem;
    color: #6B7280;
}

.comms-footer a {
    color: #2563EB;
    text-decoration: none;
    font-weight: 500;
}

.comms-footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .comms-header h1 {
        font-size: 1.875rem;
    }
    
    .comms-header p {
        font-size: 0.9375rem;
    }
    
    .accordion-header {
        padding: 20px 22px;
    }
    
    .accordion-inner {
        padding: 24px 22px 28px;
    }
    
    .dos-donts-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .comms-header {
        padding: 40px 20px;
    }
    
    .comms-header h1 {
        font-size: 1.625rem;
    }
    
    .accordion-header {
        padding: 18px 20px;
    }
    
    .accordion-inner {
        padding: 20px;
    }
    
    .header-left {
        gap: 14px;
    }
    
    .icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .accordion-header h3 {
        font-size: 1.0625rem;
    }
    
    .accordion-header p {
        font-size: 0.875rem;
    }
}
/* Form section spacing */
.form-section {
  margin: 30px 0;
}

/* Tips box */
.tips-box {
  background: #f3f7ff;
  border: 1px solid #dce7ff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
}

/* Header */
.tips-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.tips-header h4 {
  margin: 0;
  font-size: 18px;
}

/* Icon */
.tips-icon svg {
  width: 20px;
  height: 20px;
  color: #2563eb;
}

/* List */
.tips-list {
  margin: 0;
  padding-left: 18px;
}

.tips-list li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Form container */
.form-container {
  margin-top: 20px;
}

.form-container h3 {
  margin-bottom: 12px;
}
.bg-green-100 {
    background-color: #E6F6EB;
}
.text-green-600 {
    color:oklch(62.7% .194 149.214);
}
.request-guidance {
    margin-bottom: 32px;
    text-align: left;
}
ul.dos-list li, .donts-column li {
    text-align: left;
}

.text-red-600 {
    color: #e7000b;
}
/* HERO SECTION - ONLY PAGE 10828 */
.page-id-10828 .hero {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    overflow: hidden;

    /* blue gradient background */
    background: linear-gradient(135deg, #0f4c81 0%, #1f6aa5 100%);
}

/* optional soft pattern overlay */
.page-id-10828 .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0, transparent 40%),
                radial-gradient(circle at 80% 60%, rgba(255,255,255,0.06) 0, transparent 40%);
    pointer-events: none;
}

/* content container */
.page-id-10828 .hero .row {
    position: relative;
    z-index: 1;
}

/* heading */
.page-id-10828 .hero h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

/* subtitle */
.page-id-10828 .hero h2 {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* responsive */
@media (max-width: 768px) {
    .page-id-10828 .hero {
        padding: 60px 20px;
    }

    .page-id-10828 .hero h1 {
        font-size: 28px;
    }

    .page-id-10828 .hero h2 {
        font-size: 16px;
    }
}
	article#post-10828 {
		background-color: #e8edf2 !important;
	}

/* Hide hero caption on page 10828 */
.page-id-10828 #content header.hero-caption {
    display: none;
}
