.mt-section,
.mt-section-two {
    font-family: var(--mt-font);
    color: var(--mt-text-color);
    font-size: var(--mt-font-size);
}

.mt-section{
    background-color: #f8f8f8;
}

.mt-application-img{
   width: 280px;
   height: auto;
}

.mt-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    gap: 14px;
    padding: 40px 0 100px;
}

.mt-title {
    font-weight: 600;
    font-size: 56px;
}

.mt-subhead {
    font-size: 14px;
    line-height: 1.4;
}

.mt-actions {
    display: flex;
    align-items: center;
    justify-content: center; /* centers button + image together */
    gap: 15px;
    margin-top: 10px;
}

.mt-download-img {
    height: 38px;
    object-fit: contain;
    display: block;
}




/* Section Two */

.mt-section-two {
    background: #ffffff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: stretch;
}
.mt-two-column {
    display: flex;
    width: 100%;
    max-width: 1100px;
    gap: 20px;
    align-items: stretch;
}
.mt-column {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    min-height: 450px;
}

/* LEFT COLUMN */
.mt-column-left {
    background: linear-gradient(180deg, #151a33, #556bb1);
}

/* RIGHT COLUMN */
.mt-column-right {
    background: linear-gradient(135deg, #6a1523, #ffc987);
}

/* TITLE */
.mt-column-title {
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
}

/* SUBHEAD */
.mt-column-subhead {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.5;
    max-width: 420px;
}

/* ACTION ROW */
.mt-column-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

/* CREATORS LIVE SUBHEAD */
.mt-stories {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #ffffff;
}
.mt-dot {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    display: inline-block;
}

/* IMAGE */
.mt-column-image {
    width: 220px;
    height: auto;
    object-fit: contain;
    margin-top: auto;
}