#moreRows {
    display: none;
}

.promotional_content {
    text-align: center;
}

/* IMAGE */
.promotional_content .promo-img {
    display: block;
    margin: 0 auto 20px;

    width: 100%;
    max-width: 800px;

    height: 500px;
    object-fit: cover;

    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* TEXT */
.promotional_content p {
    max-width: 800px;
    margin: 0 auto;
    color: #6B7280;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .promotional_content .promo-img {
        height: auto;        /* remove fixed crop */
        object-fit: contain; /* show full image */
        max-height: 350px;   /* optional limit */
    }
}

.meet-btn {
    background: #0F172A;   /* professional navy */
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.3s ease;
    cursor: pointer;
}

.meet-btn:hover {
    background: #1E3A8A;
    transform: translateY(-2px);
}

.news_card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.news_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

/* IMAGE */
.news_img {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.news_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.news_card:hover .news_img img {
    transform: scale(1.08);
}

/* OVERLAY */
.news_card .news_overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.news_badge{
    position:absolute;
    top:10px;
    left:10px;
    background:#DC2626;
    color:#fff;
    font-size:12px;
    padding:3px 8px;
    border-radius:4px;
}

/* TIME (LEFT BOTTOM) */
.news_time {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
}

/* DATE (RIGHT BOTTOM) */
.news_date {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    background: rgba(255,255,255,0.9);
    color: #0F172A;
    padding: 3px 8px;
    border-radius: 4px;
}

/* CONTENT */
.news_content {
    padding: 18px;
}

.news_content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.news_content h3 a {
    color: #0F172A;
    text-decoration: none;
}

.news_content h3 a:hover {
    color: #1E3A8A;
}

.news_content p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

/* READ MORE */
.read_more {
    display: inline-block;
    margin-top: 10px;
    font-weight: 500;
    color: #1E3A8A;
    text-decoration: none;
}

.read_more:hover {
    color: #0F172A;
}

/* Toast css open */
.toast {
    visibility: hidden;
    min-width: 300px;
    background: #28a745;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 15px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    opacity: 0;
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.toast.error {
    background: #dc3545;
}

.toast.show {
    visibility: visible;
    opacity: 1;
}
/* Toast css close */

/* Google map */
.map_card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

/* MAP FRAME */
.map_frame iframe{
    width:100%;
    border:0;
    display:block;
}

/* INFO */
.map_info{
    padding:25px;
    text-align:center;
}

/* BUTTON */
.map_btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 22px;
    background:#2c3e50;
    color:#fff;
    border-radius:30px;
    text-decoration:none;
    transition:0.3s;
}
.map_btn:hover{
    background:#000;
}

/* =========================
   ANIMATION (HIDDEN STATE)
========================= */
.animate-map{
    opacity:0;
    transform: translateY(60px) scale(0.98);
    transition: all 0.9s ease-out;
}

/* ACTIVE STATE */
.animate-map.show{
    opacity:1;
    transform: translateY(0) scale(1);
}

/* STOP REPEATING BACKGROUND FROM THEME */
.map_section,
.map_section .container,
.map_section .row,
.map_section .col-lg-12,
.map_card,
.map_frame {
    background: #fff !important;
    background-image: none !important;
}

/* FORCE iframe clean rendering */
.map_frame iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
    background: #fff;
}

/* EXTRA SAFETY (prevents tile/repeat illusion) */
.map_section {
    overflow: hidden;
}

/* DONATION BUTTON */
/* OVERLAY */
.donate-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.6);
    backdrop-filter:blur(8px);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:0.4s;
    z-index:99999;
}

/* ACTIVE */
.donate-overlay.active{
    opacity:1;
    visibility:visible;
}

/* MODAL */
.donate-modal{
    width:92%;
    max-width:450px;
    background:#fff;
    padding:25px;
    border-radius:18px;
    transform:scale(0.8);
    transition:0.4s;
    text-align:center;
    box-shadow:0 25px 70px rgba(0,0,0,0.3);
}

.donate-overlay.active .donate-modal{
    transform:scale(1);
}

/* CLOSE */
.donate-close{
    position:absolute;
    right:15px;
    top:10px;
    font-size:24px;
    border:none;
    background:none;
    cursor:pointer;
}

/* INPUTS */
.donate-modal input{
    width:100%;
    margin:8px 0;
    padding:10px;
    border-radius:8px;
    border:1px solid #ddd;
}

/* TABS */
.donate-tabs{
    display:flex;
    justify-content:center;
    margin:10px 0 15px;
    gap:10px;
}

.donate-tabs button{
    padding:8px 15px;
    border-radius:20px;
    border:1px solid #ddd;
    background:#f5f5f5;
    cursor:pointer;
}

/* PAY BUTTONS */
.pay-btn{
    width:100%;
    margin:6px 0;
    padding:12px;
    border:none;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
}

.green{background:#2ecc71;color:#fff;}
.purple{background:#6c5ce7;color:#fff;}
.dark{background:#2d3436;color:#fff;}
.blue{background:#3498db;color:#fff;}
.yellow{background:#f1c40f;color:#000;}