.cs-headers h2{
	font-size: 30px !important;
	padding-top: 5%;
	color: #1f4733;
}

.acf-repeater-container.side-by-side {
    display: flex;
    gap: 50px;
    align-items: flex-start; /* Keeps items from stretching vertically */
}

/* This targets the immediate children (the repeater rows) */
.acf-repeater-container.side-by-side > * {
    flex: 1; /* Forces both sides to take up equal width */
    min-width: 0; /* Prevents content from pushing the width wider than 50% */
}

.repeater-column h3 {
    margin-top: 0;
    border-bottom: 2px solid #1f4733;
    padding-bottom: 10px;
	font-size: 20px;
}

/* Bullet styling */
.gaps-list, .risk-list {
    list-style-type: disc !important; /* Forces the bullet points */
    padding-left: 20px;
    margin: 0;
}

.gaps-list li, .risk-list li {
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Container spacing */
.faq-accordion-container {
    max-width: 100%;
    margin: 20px 0;
    border-top: 1px solid #e0e0e0; /* Top line of the first item */
}

/* Individual FAQ Item */
.faq-item {
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

/* Question Styling */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    color: #444;
    list-style: none; /* Hide default browser arrow */
}

/* Hide default arrow in Chrome/Safari */
.faq-question::-webkit-details-marker {
    display: none;
}

/* The Plus/Minus Icon */
.faq-icon::before {
    content: '\002b'; /* Plus sign Unicode */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid #ccc;
    border-radius: 50%;
    font-size: 16px;
    color: #888;
}

/* Change icon when Open */
.faq-item[open] .faq-icon::before {
    content: '\2212'; /* Minus sign Unicode */
}

/* Answer Styling */
.faq-answer {
    padding: 0 0 25px 0;
    line-height: 1.6;
    color: #666;
    font-size: 16px;
    /* Smooth reveal animation */
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.cost-comparison-flex {
    display: flex;
    gap: 20px; /* Adds space between the two boxes */
    width: 100%;
    margin: 20px 0;
}

.cost-item {
    flex: 1; /* This makes both boxes exactly 50% width */
    background: #ffffff;
    border: 2px solid #1f4733; /* WordPress Blue */
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cost-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cost-value {
    font-size: 24px;
    font-weight: 800;
    color: #23282d;
}

/* Mobile Responsive: Stack them on top of each other on small screens */
@media (max-width: 768px) {
    .cost-comparison-flex {
        flex-direction: column;
    }
}


.team-table-container {
    margin: 30px 0;
    overflow-x: auto; /* Ensures it's mobile-friendly */
}

.team-table {
    width: 100%;
    border-collapse: collapse;
    font-family: sans-serif;
    border: 1px solid #ccc;
}

.team-table thead th {
    background-color: #fcfcfc;
    color: #002d72; /* Dark blue from your screenshot */
    text-align: left;
    padding: 12px 15px;
    border-bottom: 2px solid #ccc;
    border-right: 1px solid #ccc;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.team-table thead th:last-child {
    border-right: none;
}

.team-table tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    color: #444;
    vertical-align: top;
    font-size: 0.95rem;
}

.team-table tbody td:last-child {
    border-right: none;
}

/* Matching the column widths from your sample */
.col-role { width: 30%; }
.col-alloc { width: 15%; }
.col-focus { width: 55%; }

/* Optional: Zebra striping for readability */
.team-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* =====================================================
   Case Study
   ===================================================== */

.case-study figure.alignwide.wp-block-post-featured-image {
    object-fit: contain;
    width: 100%;
    height: auto;
}

.post .case-study .alignwide {
    margin-left: 0px !important; 
}

.case-study-date.wp-block-post-date {
    font-size: 14px;
		color: #8f8f8f;
}

h3.case-study-title.wp-block-post-title{
	padding-bottom: 0px !important;
	padding-top: 0px !important;
	
}

.case-study-excerpt.wp-block-post-excerpt {
    font-size: 16px;
}
ul.columns-3.case-study-column.wp-block-post-template.is-layout-grid.wp-container-core-post-template-is-layout-2f3213d7.wp-block-post-template-is-layout-grid li {
    list-style-type: none; 
}

.case-study-inner-col {
	padding: 0px !important;
}

.case-study-last-col{
	padding:20px;
}

.cient-purpose {
	background-color: #ffffff !important;
}

.CS-Content-Right{
    padding-top: 3%;
}

.other-info p{
	font-size: 16px;
	padding-top: 10px;
}