:root {
    --custom1-teal-main: #2c7a7b;
    --custom1-teal-dark: #235e5f;
    --custom1-text-dark: #ffa200;
    --custom1-bg-white: #ffffff;
    --custom1-card-border: #ffa200;
    --custom1-transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* =========================
   SECTION
========================= */
.custom1-journal-section-light {
    background-color: var(--custom1-bg-white);
    padding: 50px 10px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--custom1-text-dark);
}

.custom1-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.custom1-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.custom1-subtitle {
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.8rem;
    color: var(--custom1-teal-main);
    font-weight: 700;
    display: block;
    margin-bottom: 14px;
}

.custom1-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.custom1-brand-color {
    color: var(--custom1-teal-main);
}

.custom1-description {
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #334155;
}

/* =========================
   BENTO GRID
========================= */
.custom1-bento-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
}

/* =========================
   CARD
========================= */
.custom1-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--custom1-card-border);
    transition: var(--custom1-transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.custom1-card-large {
    grid-row: span 2;
    min-height: 520px;
}

.custom1-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(44, 122, 123, 0.22);
    border-color: var(--custom1-teal-main);
}

/* =========================
   IMAGE
========================= */
.custom1-card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: var(--custom1-transition);
    z-index: 1;
}

.custom1-card:hover .custom1-card-image {
    transform: scale(1.05);
}

/* Gradient intens */
.custom1-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88),
        rgba(0, 0, 0, 0.45),
        transparent
    );
    z-index: 2;
}

/* =========================
   CONTENT
========================= */
.custom1-card-content {
    position: relative;
    z-index: 3;
    padding: 42px;
    margin-top: auto;
    color: #ffffff;
    backdrop-filter: blur(2px);
}

/* TAG */
.custom1-tag {
    background: linear-gradient(
        135deg,
        var(--custom1-teal-main),
        var(--custom1-teal-dark)
    );
    color: white;
    padding: 6px 16px;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: inline-block;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* TITLU */
.custom1-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.25;
    letter-spacing: -0.6px;
    color: #ffffff;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* DESCRIERE */
.custom1-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.92;
    max-width: 90%;
    color: rgba(255, 255, 255, 0.9);
}

/* =========================
   BUTTON – CITEȘTE MAI MULT
========================= */
.custom1-btn-minimal {
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffa200;
    padding-bottom: 6px;
    position: relative;
    letter-spacing: 0.4px;
    transition: var(--custom1-transition);
}

.custom1-btn-minimal::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35%;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--custom1-teal-main),
        rgba(44, 122, 123, 0.3)
    );
    transition: var(--custom1-transition);
}

.custom1-card:hover .custom1-btn-minimal {
    gap: 14px;
    color: #e6fffa;
}

.custom1-card:hover .custom1-btn-minimal::after {
    width: 100%;
}

/* =========================
   FOOTER BUTTON
========================= */
.custom1-action-footer {
    text-align: center;
    margin-top: 70px;
}

.custom1-btn-main {
    display: inline-block;
    padding: 18px 46px;
    background: #2c7a7b; /* culoare teal */
    color: #ffffff;       /* text alb */
    text-decoration: none;
    border-radius: 14px;
    font-weight: 800;
    transition: var(--custom1-transition);
    box-shadow: 0 14px 30px rgba(44, 122, 123, 0.3);
}

.custom1-btn-main:hover {
    color: orange; /* text portocaliu la hover */
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 20px 40px rgba(44, 122, 123, 0.4);
}

/* TITLU LINK */
.custom1-card-title-link {
    color: #ffffff;
    text-decoration: none;
}

.custom1-card-title-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .custom1-bento-grid {
        grid-template-columns: 1fr;
    }

    .custom1-card-large {
        grid-row: span 1;
        min-height: 420px;
    }

    .custom1-title {
        font-size: 2.1rem;
    }

    .custom1-card-content {
        padding: 32px;
    }
}
