/* Service page layout blocks -- pill row, card grid, logo strip.
   Available to any managed service page; rendered by /Controls/ServiceBlocks.ascx.

   Promoted verbatim from the hand-built Radio Day page stylesheet (rdv2-*) so the
   appearance is unchanged; only the class names became page-neutral. Hero and
   section-wrapper rules were deliberately left behind -- ServiceItem.aspx supplies
   its own section chrome.

   Brand: #3d1a6f (purple), #170a29 (dark), #fdb913 (yellow), #ed174c (red) */

/* Brand dots */
.svcblk-heading-dots {
    display: flex;
    gap: 8px;
    margin: 1rem 0 1.5rem;
}
.svcblk-heading-dots-center { justify-content: center; }
.svcblk-heading-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.svcblk-hdot-y { background: #fdb913; }
.svcblk-hdot-r { background: #ed174c; }
.svcblk-hdot-p { background: #3d1a6f; }

/* Section heading */
.svcblk-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #170a29;
    margin-bottom: 0.5rem;
}
.svcblk-block { margin: 2.5rem 0; }
/* The surrounding section already supplies its own padding; without these the two
   stack and leave an over-large gap where a block meets the page body copy. */
.svcblk-block:first-child { margin-top: 0; }
.svcblk-block:last-child { margin-bottom: 0; }
.svcblk-block p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

/* Pill row */
.svcblk-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.svcblk-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #170a29;
    background: #fff;
    box-shadow: 0 4px 16px rgba(61,26,111,0.1);
}
.svcblk-pill i { font-size: 0.5rem; }
.svcblk-pill-yellow i { color: #fdb913; }
.svcblk-pill-red i { color: #ed174c; }
.svcblk-pill-purple i { color: #3d1a6f; }

/* Card grid */
.svcblk-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(61,26,111,0.08);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.svcblk-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(61,26,111,0.15);
}
.svcblk-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.25rem;
}
.svcblk-icon-yellow { background: #fdb913; color: #170a29; }
.svcblk-icon-red { background: #ed174c; }
.svcblk-icon-purple { background: #3d1a6f; }
.svcblk-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #170a29;
    margin-bottom: 1rem;
}
.svcblk-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.svcblk-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}
.svcblk-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #fdb913;
    font-size: 0.8rem;
    top: 2px;
}

/* Logo strip */
.svcblk-logostrip { text-align: center; }
.svcblk-logostrip img {
    max-width: 70%;
    height: auto;
}
.svcblk-logo-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}
.svcblk-logo-list img {
    max-width: 160px;
    max-height: 70px;
    width: auto;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 575px) {
    .svcblk-pill { font-size: 0.85rem; padding: 0.5rem 1rem; }
    .svcblk-logostrip img { max-width: 100%; }
}
