/* ----------------------------------------------------
           MEDIA KIT CUSTOM CSS (DARK LAYOUT)
        ----------------------------------------------------- */
    .matmk-section {
        padding: 40px 0 40px 0;
        position: relative;
    }

    /* Card Styles */
    .matmk-card {
        /*background: #0f0f0f;*/
        border: 1px solid #3f3f3f;
        border-radius: 16px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .matmk-card:hover {
        transform: translateY(-10px);
        border-color: #ec700c;
        box-shadow: 0 15px 35px rgba(236, 112, 12, 0.15);
    }

    /* Image Box inside Card */
    .matmk-img-box {
        height: 240px;
        width: 100%;
        overflow: hidden;
        position: relative;
        background: #1a1a1a;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .matmk-img-box img.bg-cover {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .matmk-card:hover .matmk-img-box img.bg-cover {
        transform: scale(1.08);
    }

    /* Specific Logo Grid for Brand Assets Card */
    .matmk-logo-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        width: 100%;
        height: 100%;
    }

    .matmk-logo-grid-item {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .matmk-logo-grid-item:nth-child(1) {
        background: #ffffff;
    }

    .matmk-logo-grid-item:nth-child(2) {
        background: #000000;
    }

    .matmk-logo-grid-item:nth-child(3) {
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    }

    .matmk-logo-grid-item:nth-child(4) {
        background: #111111;
    }

    .matmk-logo-grid-item img {
        max-width: 80%;
        max-height: 80%;
        object-fit: contain;
        transition: transform 0.4s ease;
    }

    .matmk-card:hover .matmk-logo-grid-item img {
        transform: scale(1.1);
    }

    /* Card Body */
    .matmk-card-body {
        padding: 35px 30px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .matmk-card-title {
        color: #ffffff;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .matmk-card-text {
        color: var(--text-color);
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 30px;
        flex-grow: 1;
    }

    /* Outline Button */
    .matmk-btn {
        display: inline-block;
        padding: 12px 30px;
        color: #ec700c;
        border: 1px solid #ec700c;
        border-radius: 30px;
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        text-decoration: none;
        transition: all 0.3s ease;
        align-self: flex-start;
    }

    .matmk-btn:hover {
        background: #ec700c;
        color: #ffffff;
        box-shadow: 0 5px 15px rgba(236, 112, 12, 0.3);
    }

    /* Press Contact Section */
    .matmk-contact-box {
        /*background: linear-gradient(145deg, #0a0a0a 0%, #111111 100%);*/
        border: 1px solid #3f3f3f;
        border-radius: 20px;
        padding: 60px 40px;
        text-align: center;
        margin-top: 80px;
    }

    .matmk-contact-title {
        color: #ffffff;
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .matmk-contact-desc {
        color: var(--text-color);
        font-size: 17px;
        margin-bottom: 0;
    }

    .matmk-contact-email {
        color: #ec700c;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s;
    }

    .matmk-contact-email:hover {
        color: #ffffff;
        text-decoration: underline;
    }