/* Container full width */
.pkp_structure_content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Journal Grid */
.media_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}

/* Card Journal */
.media {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}

/* Hover Effect */
.media:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Cover */
.media .cover {
    margin-bottom: 15px;
}

.media img {
    border-radius: 8px;
    max-height: 280px;
    object-fit: cover;
}

/* Journal Title */
.media .title {
    font-size: 16px;
    font-weight: 600;
    color: #003366;
    margin-bottom: 10px;
}

/* Buttons */
.media a.btn {
    display: inline-block;
    background: #0056b3;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    margin: 4px;
    text-decoration: none;
}

.media a.btn:hover {
    background: #003f88;
}
/* Hide PKP Branding */
.pkp_brand_footer,
.pkp_footer_content .pkp_brand_footer,
.pkp_structure_footer_wrapper .pkp_brand_footer,
.pkp_footer_content p:has(a[href*="pkp.sfu.ca"]) {
    display: none !important;
}
/* ===========================
   CUSTOM FOOTER AHAD MEDIA
   =========================== */

.pkp_structure_footer_wrapper {
    background: #0f2b46;
    color: #ffffff;
    padding: 50px 20px;
}

.pkp_footer_content {
    max-width: 1200px;
    margin: 0 auto;
}

.custom-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.custom-footer h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.custom-footer p,
.custom-footer a {
    font-size: 14px;
    color: #dce3ec;
    text-decoration: none;
    line-height: 1.7;
}

.custom-footer a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #cbd6e2;
}
/* HIDE PKP FOOTER */
.pkp_brand_footer,
.pkp_structure_footer_wrapper .pkp_brand_footer {
    display: none !important;
}

/* CUSTOM FOOTER */
.pkp_structure_footer_wrapper {
    background: #0f2b46;
    color: #fff;
    padding: 50px 20px;
    position: relative;
}

}

/* Copyright */
.pkp_structure_footer_wrapper::after {
    content: "© 2026 Ahad Media Digital. All Rights Reserved.";
    display: block;
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
    opacity: 0.8;
}