/* --- High-Impact Focused Program Framework --- */

.playgroup-detail {
    background: #ffffff;
}

/* Image Side: Equal Weight */
.pg-detail-image-wrap {
    padding: 10px;
    background: #fff;
    border-radius: 30px;
    border: 2px solid #f25334; /* Theme Color */
    box-shadow: 0 10px 40px rgba(242, 83, 52, 0.15); /* Theme Glow */
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pg-detail-image-wrap:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(242, 83, 52, 0.3); /* Intensified Glow */
    border-color: #f25334;
}

.pg-detail-img {
    width: 100%;
    border-radius: 20px;
    display: block;
    transition: transform 0.6s ease;
}

.pg-detail-image-wrap:hover .pg-detail-img {
    transform: scale(1.08); /* Sophisticated Scale-up */
}

/* Content Side */
.pg-detail-content {
    position: relative;
}

.pg-detail-badge {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: #f25334;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.pg-detail-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    color: #1f2235;
    margin-bottom: 20px;
}

.pg-detail-title span { color: #f25334; }

.pg-detail-divider {
    width: 60px;
    height: 5px;
    background: #f25334;
    border-radius: 3px;
    margin-bottom: 30px;
}

.pg-detail-intro {
    font-size: 22px;
    font-weight: 700;
    color: #1f2235;
    line-height: 1.6;
    margin-bottom: 25px;
}

.pg-detail-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.pg-detail-btn {
    padding: 18px 45px;
    background: #f25334;
    color: #fff;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(242, 83, 52, 0.2);
    transition: all 0.3s ease;
}

.pg-detail-btn:hover {
    background: #1f2235;
    color: #fff;
    transform: translateY(-5px);
}

/* Activity Executive Cards */
.pg-activity-row {
    margin-top: 100px;
}

.activity-exec-card {
    background: #ffffff;
    padding: 10px 8px;
    border-radius: 40px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 391px;
}

.activity-exec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(242, 83, 52, 0.1);
    border-color: #f25334;
}

.ax-icon {
    width: 80px;
    height: 80px;
    background: rgba(242, 83, 52, 0.08); /* Sophisticated soft theme bg */
    color: #f25334;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px; /* Refined professional size */
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.activity-exec-card:hover .ax-icon {
    background: #f25334;
    color: #fff;
    transform: scale(1.1);
}

.ax-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 26px;
    color: #1f2235;
    margin-bottom: 15px;
}

.ax-text {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Theme variations for professional cards */
.ax-color-blue .ax-icon { background: rgba(35, 144, 255, 0.08); color: #2390ff; }
.ax-color-blue:hover { border-color: #2390ff; box-shadow: 0 20px 60px rgba(35, 144, 255, 0.1); }
.ax-color-blue:hover .ax-icon { background: #2390ff; }

.ax-color-teal .ax-icon { background: rgba(56, 178, 172, 0.08); color: #38b2ac; }
.ax-color-teal:hover { border-color: #38b2ac; box-shadow: 0 20px 60px rgba(56, 178, 172, 0.1); }
.ax-color-teal:hover .ax-icon { background: #38b2ac; }

/* Responsive */
@media (max-width: 991px) {
    .pg-detail-title { font-size: 38px; }
    .pg-detail-content { margin: 40px 0 0 !important; }
}

@media (max-width: 767px) {
    .pg-detail-title { font-size: 32px; }
}



