/* =========================
   SECTION
========================= */
.pbloom-section {
    padding-top: 48px;
    padding-bottom:48px;
}

/* CONTAINER */
.pbloom-container {
    margin: auto;
    max-width: 1280px;
    padding-left:20px;
    padding-right:20px;
    
}

/* =========================
   HEADER
========================= */
.pbloom-header {
    text-align: center;
    margin-bottom: 50px;
}

.pbloom-heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.pbloom-subheading {
    font-size: 17px;
    color: #000;
    margin-bottom: 8px;
}

.pbloom-content {
    max-width: 700px;
    margin: auto;
    color: #000;
    line-height: 1.6;
}

/* =========================
   GRID
========================= */
.pbloom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    align-items: stretch;
}

/* =========================
   CARD
========================= */
.pbloom-card {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* HOVER */
.pbloom-card:hover {
    border-color: #2d94ed;
    transform: translateY(-4px);
}

/* =========================
   TOP (ICON + TITLE)
========================= */
.pbloom-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    min-height: 60px; /* 🔥 equal alignment */
}

/* ICON */
.pbloom-icon {
    width: 48px;
    height: 48px;
    background: #2d94ed;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pbloom-icon img {
    width: 35px;
}

/* TITLE WRAP */
.pbloom-title-wrap {
    display: flex;
    flex-direction: column;
}

/* TITLE */
.pbloom-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* BADGE */
.pbloom-badge {
    display: inline-block;
    background: #2d94ed;
    color: #fff;
    font-size: 14px;
    padding: 3px 8px;
    border-radius: 20px;
    margin-bottom: 6px;
    width: fit-content;
}

/* =========================
   TEXT
========================= */

/* SUBTITLE */
.pbloom-subtitle {
    color: #2d94ed;
    font-style: italic;
    margin: 8px 0 10px;
    font-size: 16px;
    line-height: 1.4;
}

/* DESCRIPTION */
.pbloom-desc {
    color: #000;
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.5;
}

/* =========================
   LIST
========================= */
.pbloom-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
    flex-grow: 1;
}

.pbloom-list-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.pbloom-check-icon {
    color: #2d94ed;
    margin-top: 4px;
    flex-shrink: 0;
}

.pbloom-svg-icon {
    width: 15px;
    height: 15px;
}

.pbloom-text {
    color: #000;
    font-size: 17px;
}

/* =========================
   BUTTON
========================= */
.pbloom-btn {
    margin-top: auto;
    display: block;
    text-align: center;
    background: #fa4616;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    transition: 0.3s;
}



/* =========================
   TABLET
========================= */
@media (max-width: 992px) {

    .pbloom-heading {
        font-size: 30px;
    }

    .pbloom-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pbloom-card {
        padding: 24px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {

    .pbloom-section {
        padding: 50px 15px;
    }

    .pbloom-heading {
        font-size: 24px;
    }

    .pbloom-content {
        font-size: 14px;
    }

    .pbloom-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pbloom-title {
        font-size: 18px;
    }

    .pbloom-card {
        padding: 20px;
    }

    .pbloom-btn {
        width: 100%;
    }
}