/**
 * Premium B2B Services Grid Style (A2LA Layout)
 * Thick top border accent bars, circular lists, and responsive grid patterns.
 */

.cg-services-a2la-wrapper {
    width: 100%;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1e293b;
}

/* Header Content block */
.cg-services-a2la-header {
    margin-bottom: 45px;
    text-align: left;
}

.cg-services-a2la-heading {
    font-size: 32px;
    font-weight: 700;
    color: #154683;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.cg-services-a2la-subtitle {
    font-size: 16px;
    color: #475569;
    margin: 0;
    max-width: 600px;
    line-height: 1.5;
}

/* Columns Grid */
.cg-services-a2la-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual Service Card */
.cg-services-a2la-card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 8px 24px rgba(148, 163, 184, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.cg-services-a2la-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(148, 163, 184, 0.14);
}

/* Thick Top Accent Bar */
.cg-services-a2la-card-bar {
    width: 100%;
    height: 5px;
    transition: background-color 0.3s ease;
}

/* Inner Body padding */
.cg-services-a2la-card-body {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cg-services-a2la-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 14px 0;
    line-height: 1.3;
}

.cg-services-a2la-card-desc {
    font-size: 14.5px;
    color: #475569;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

/* Custom Bullet List */
.cg-services-a2la-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cg-services-a2la-bullets li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.5;
    color: #1e293b;
}

.cg-services-a2la-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--bullet-dot-color, #6DC05A);
    display: inline-block;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .cg-services-a2la-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px;
    }
    .cg-services-a2la-heading {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .cg-services-a2la-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    .cg-services-a2la-header {
        margin-bottom: 30px;
        text-align: center;
    }
    .cg-services-a2la-subtitle {
        margin: 0 auto;
    }
    .cg-services-a2la-card-body {
        padding: 30px 20px !important;
    }
}
