/* ================================================================
   TRE – Large Card
   File: assets/css/large-card.css
   ================================================================ */

.tre-lc {
    position: relative;
    background: linear-gradient(135deg, #0f1f4a 0%, #1a2d6a 60%, #1e3580 100%);
    border-radius: 10px;
    overflow: hidden;
    max-width: 1200px;
    margin: 20px auto;
    box-shadow: 0 0 0 2px rgba(60,100,200,0.4),
                0 0 20px rgba(30,60,160,0.3);
    font-family: Arial, Helvetica, sans-serif;
}

/* Optional full card link overlay */
.tre-lc__full-link {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* ── Inner layout ── */
.tre-lc__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
}

/* ── Left text block ── */
.tre-lc__text {
    flex: 1;
    min-width: 0;
}
.tre-lc__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px;
    color: #ffffff;
}
.tre-lc__title-main {
    display: block;
    color: #ffffff;
}
.tre-lc__title-highlight {
    display: block;
    color: #f0a500;
}
.tre-lc__subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin: 0 0 18px;
    line-height: 1.5;
}

/* ── Buttons ── */
.tre-lc__btn {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 22px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity .2s, background .2s;
    position: relative;
    z-index: 2;
}
.tre-lc__btn--red   { background: #d0021b; color: #fff; }
.tre-lc__btn--amber { background: #f0a500; color: #fff; }
.tre-lc__btn--blue  { background: #2053a5; color: #fff; }
.tre-lc__btn--green { background: #27ae60; color: #fff; }
.tre-lc__btn:hover  { opacity: .85; }

/* ── Right image — square with small radius ── */
.tre-lc__image-wrap {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    border-radius: 4px;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.15);
    box-shadow: 0 0 16px rgba(0,0,0,0.3);
    background: #0f1f4a;
}
.tre-lc__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tre-lc__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
}

/* ================================================================
   TABLET  ≤ 768px
   ================================================================ */
@media (max-width: 768px) {
    .tre-lc__content {
        flex-direction: column-reverse;
        text-align: center;
        padding: 24px 20px;
        gap: 18px;
    }
    .tre-lc__title {
        font-size: 18px;
    }
    .tre-lc__image-wrap {
        width: 100px;
        height: 100px;
    }
}

/* ================================================================
   MOBILE  ≤ 480px
   ================================================================ */
@media (max-width: 480px) {
    .tre-lc__title { font-size: 16px; }
    .tre-lc__btn   { font-size: 12px; padding: 8px 18px; }
    .tre-lc__image-wrap { width: 80px; height: 80px; }
}
