:root {
    --orange: #ff8a00;
    --orange-dark: #d96a00;
    --pastel-yellow: #fff1b8;
    --soft-blue: rgba(214, 235, 255, .58);
    --blue-border: rgba(125, 180, 230, .28);
    --dark: #101828;
    --text: #1f2937;
    --muted: #667085;
    --white: #ffffff;
    --bg: #f7fbff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 241, 184, .65), transparent 380px),
        radial-gradient(circle at top right, var(--soft-blue), transparent 450px),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 48%, #fff9e8 100%);
    color: var(--text);
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

/* TOPO TIPO PORTAL */

.top-header {
    width: 100%;
    height: 58px;
    position: sticky;
    top: 0;
    z-index: 999;
    background: #E7F3FF;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mini-brand {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    color: orange;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
}

/* ===== AÇÕES DOS COMENTÁRIOS ===== */

.comment-owner-actions{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:12px;
    flex-wrap:wrap;
}

.comment-owner-actions details{
    position:relative;
}

.comment-owner-actions summary{
    list-style:none;
    cursor:pointer;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    padding:8px 16px;
    border-radius:12px;
    font-size:13px;
    font-weight:600;
    transition:0.25s ease;
    user-select:none;
    backdrop-filter:blur(10px);
}

.comment-owner-actions summary::-webkit-details-marker{
    display:none;
}

.comment-owner-actions summary:hover{
    background:orange;
    border-color:#fff;
    transform:translateY(-2px);
}

/* ===== BOTÃO DE DELETAR ===== */

.delete-comment-btn{
    background:rgba(239,68,68,0.12);
    border:1px solid rgba(239,68,68,0.25);
    color:#ff7b7b;
    padding:8px 16px;
    border-radius:12px;
    cursor:pointer;
    font-size:13px;
    font-weight:600;
    transition:0.25s ease;
}

.delete-comment-btn:hover{
    background:#ef4444;
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(239,68,68,0.35);
}

/* ===== FORM DE EDIÇÃO ===== */

.edit-comment-form{
    margin-top:12px;
    width:100%;
    display:flex;
    flex-direction:column;
    gap:10px;
    animation:fadeIn .25s ease;
}

.edit-comment-form textarea{
    width:100%;
    min-height:90px;
    resize:vertical;
    border:none;
    outline:none;
    padding:14px;
    border-radius:16px;
    background:#101010;
    color:#fff;
    font-size:14px;
    line-height:1.5;
    border:1px solid rgba(255,255,255,0.08);
    transition:0.25s ease;
}

.edit-comment-form textarea:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,0.15);
}

.edit-comment-form button{
    align-self:flex-start;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:14px;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
    transition:0.25s ease;
}

.edit-comment-form button:hover{
    transform:translateY(-2px) scale(1.02);
    box-shadow:0 10px 24px rgba(37,99,235,0.35);
}

/* ===== ANIMAÇÃO ===== */

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(-5px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* LIKE BUTTON */

.article-actions {
    padding: 0 50px 45px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.article-actions form {
    padding: 0;
}

.like-btn,
.comment-open-btn {
    position: relative;
    overflow: hidden;

    border: none;

    background: linear-gradient(
        135deg,
        var(--orange),
        #ffd166
    );

    color: #2a1600;

    padding: 15px 24px;

    border-radius: 18px;

    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 15px 35px rgba(255,138,0,.22);

    transition: .25s;

    font-family: inherit;
    font-size: 15px;
}

.comment-open-btn {
    background:
        linear-gradient(
            135deg,
            rgba(214,235,255,.95),
            rgba(255,255,255,.95)
        );

    color: var(--dark);
}

.like-btn:hover,
.comment-open-btn:hover {
    transform: translateY(-2px);
}

.like-btn::after {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(255,255,255,.16);

    opacity: 0;

    transition: .3s;
}

.like-btn:hover::after {
    opacity: 1;
}

.like-btn.liked {
    animation: likedPulse .5s ease;
}

.like-btn.liked .heart {
    animation: heartPop .6s ease;
}

@keyframes likedPulse {

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1);
    }

}

@keyframes heartPop {

    0%{
        transform:scale(1);
    }

    30%{
        transform:scale(1.6) rotate(-10deg);
    }

    60%{
        transform:scale(.9);
    }

    100%{
        transform:scale(1);
    }

}

.heart {
    display:inline-block;
}

/* COMMENTS MODAL */

.comment-modal-toggle {
    display: none;
}

.comment-modal-overlay {
    position: fixed;
    inset: 0;

    background: rgba(16,24,40,.62);

    backdrop-filter: blur(10px);

    z-index: 2000;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 22px;
}

.comment-modal-toggle:checked ~ .comment-modal-overlay {
    display: flex;
}

.comment-modal {
    width: min(760px, 100%);
    max-height: 88vh;

    background: white;

    border-radius: 30px;

    overflow: hidden;

    box-shadow:
        0 35px 100px rgba(0,0,0,.30);

    display: grid;

    grid-template-rows:
        auto
        minmax(0,1fr)
        auto;

    animation: modalUp .22s ease;
}

@keyframes modalUp {

    from{
        opacity:0;
        transform:translateY(18px) scale(.98);
    }

    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }

}

.comment-modal-header {
    padding: 22px 24px;

    border-bottom:
        1px solid rgba(125,180,230,.25);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(255,241,184,.72),
            rgba(214,235,255,.55)
        );
}

.comment-modal-header h2 {
    color: var(--dark);
    font-size: 24px;
}

.comment-modal-header p {
    color: var(--muted);
    font-weight: 700;
    margin-top: 4px;
}

.comment-close-btn {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: white;

    color: var(--dark);

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 10px 28px rgba(16,24,40,.10);
}

.comment-modal-body {
    padding: 20px 24px;

    overflow-y: auto;

    display: grid;
    gap: 16px;
}

.insta-comment {
    display: flex;
    gap: 13px;
}

.insta-avatar {
    width: 44px;
    height: 44px;

    min-width: 44px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            #ffd166
        );

    color: #2a1600;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 900;
}

.insta-bubble {
    background: #f8fbff;

    border:
        1px solid rgba(125,180,230,.24);

    border-radius: 20px;

    padding: 13px 15px;

    width: 100%;
}

.insta-bubble strong {
    color: var(--dark);
    font-size: 14px;
}

.insta-bubble p {
    color: var(--text);
    line-height: 1.55;
    margin-top: 5px;
    font-size: 15px;
}

.insta-bubble small {
    display: block;
    color: var(--muted);
    font-weight: 700;
    margin-top: 8px;
    font-size: 12px;
}

.comment-modal-form {
    padding: 18px 24px 24px;

    border-top:
        1px solid rgba(125,180,230,.25);

    background: white;

    display: grid;
    gap: 12px;
}

.comment-modal-form input,
.comment-modal-form textarea {
    width: 100%;

    border:
        1px solid rgba(125,180,230,.34);

    background: #fff;

    padding: 14px 15px;

    border-radius: 16px;

    font-family: inherit;

    outline: none;
}

.comment-modal-form textarea {
    min-height: 90px;
    resize: vertical;
}

.comment-modal-form button {
    border: none;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            #ffd166
        );

    color: #2a1600;

    padding: 14px 18px;

    border-radius: 16px;

    font-weight: 900;

    cursor: pointer;
}

/* MOBILE */

@media(max-width:700px){

    .article-actions{
        padding:0 24px 30px;
        flex-direction:column;
        align-items:stretch;
    }

    .like-btn,
    .comment-open-btn{
        width:100%;
        text-align:center;
    }

    .comment-modal-overlay{
        align-items:flex-end;
        padding:0;
    }

    .comment-modal{
        width:100%;
        max-height:92vh;
        border-radius:28px 28px 0 0;
    }

}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.desktop-nav a {
    color: orange;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 14px;
    border-radius: 999px;
    transition: .22s;
}

.desktop-nav a:hover {
    background: rgba(255,255,255,.16);
    color: #8f4908;
}

/* FAIXA DA LOGO CENTRAL */

.brand-hero {
    position: relative;
    min-height: 185px;
    background:
        linear-gradient(90deg, #ff8a00, #ffd166 45%, #d9edff);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 40%, rgba(255,255,255,.30), transparent 250px),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,.25), transparent 280px),
        linear-gradient(120deg, rgba(255,138,0,.85), rgba(255,209,102,.70), rgba(214,235,255,.65));
}

.brand-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: .35;
}

.main-logo-wrap {
    position: relative;
    z-index: 2;
    width: min(420px, 78vw);
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo {
    max-width: 100%;
    max-height: 195px;
    object-fit: contain;
    display: block;
    filter:
        drop-shadow(0 18px 28px rgba(0,0,0,.20))
        drop-shadow(0 8px 20px rgba(255,138,0,.28));
}

/* BREAKING */

.breaking-news {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 5%;
    background: linear-gradient(90deg, var(--orange), #ffd166);
    color: #2a1600;
    font-weight: 900;
}

.breaking-news strong {
    background: rgba(255, 255, 255, .75);
    color: var(--orange-dark);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
}

/* HERO INDEX */

.hero {
    width: 90%;
    max-width: 1350px;
    min-height: 560px;
    margin: 36px auto;
    border-radius: 38px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background:
        linear-gradient(120deg, rgba(16, 24, 40, .82), rgba(16, 24, 40, .18)),
        url("https://images.unsplash.com/photo-1504711434969-e33886168f5c?q=80&w=1600&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    box-shadow: 0 35px 90px rgba(16, 24, 40, .18);
}

.hero-glass {
    margin: 44px;
    max-width: 780px;
    padding: 38px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .16);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .28);
    color: white;
}

.category {
    display: inline-block;
    background: var(--pastel-yellow);
    color: #7a3d00;
    padding: 9px 15px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -3px;
    margin: 22px 0;
    font-weight: 900;
}

.hero p {
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero a {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), #ffd166);
    color: #2a1600;
    padding: 15px 22px;
    border-radius: 16px;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(255, 138, 0, .28);
    transition: .25s;
}

.hero a:hover {
    transform: translateY(-3px);
}

/* INDEX */

.home-wrapper {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
}

.headline-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}

.mini-news {
    background: rgba(255, 255, 255, .86);
    border: 1px solid var(--blue-border);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 15px 45px rgba(16, 24, 40, .06);
    transition: .25s;
}

.mini-news:hover {
    transform: translateY(-5px);
    background: var(--pastel-yellow);
}

.mini-news span {
    color: var(--orange-dark);
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
}

.mini-news strong {
    display: block;
    margin-top: 8px;
    color: var(--dark);
    line-height: 1.35;
}

.search-panel {
    background: linear-gradient(135deg, rgba(255, 241, 184, .94), rgba(214, 235, 255, .58));
    border: 1px solid var(--blue-border);
    border-radius: 30px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 42px;
}

.search-panel h2 {
    font-size: 32px;
    color: var(--dark);
    letter-spacing: -1px;
}

.search-panel p {
    color: var(--muted);
    margin-top: 6px;
    font-weight: 700;
}

.search-panel form {
    display: flex;
    gap: 12px;
    width: min(520px, 100%);
}

.search-panel input {
    flex: 1;
    border: 1px solid var(--blue-border);
    background: white;
    padding: 15px 16px;
    border-radius: 16px;
    font-family: inherit;
    outline: none;
}

.search-panel input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 5px rgba(255, 138, 0, .12);
}

.search-panel button {
    border: none;
    background: var(--dark);
    color: white;
    padding: 15px 22px;
    border-radius: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: .25s;
}

.search-panel button:hover {
    background: var(--orange);
    color: #2a1600;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    align-items: start;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}

.section-heading span {
    width: 12px;
    height: 42px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--orange), #ffd166);
}

.section-heading h2 {
    font-size: 38px;
    color: var(--dark);
    letter-spacing: -1.5px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.card {
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--blue-border);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(16, 24, 40, .08);
    transition: .28s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 75px rgba(16, 24, 40, .13);
}

.card-image {
    position: relative;
    height: 245px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s;
}

.card:hover .card-image img {
    transform: scale(1.06);
}

.card-image span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(255, 241, 184, .96);
    color: #7a3d00;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.card-body {
    padding: 24px;
}

.card-body h3 {
    font-size: 25px;
    line-height: 1.18;
    color: var(--dark);
    letter-spacing: -.8px;
    margin-bottom: 12px;
}

.card-body p {
    color: var(--muted);
    line-height: 1.7;
    font-weight: 500;
}

.card-footer {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.card-footer small {
    color: var(--muted);
    font-weight: 800;
}

.card-footer a {
    background: rgba(214, 235, 255, .80);
    color: var(--dark);
    padding: 11px 16px;
    border-radius: 14px;
    font-weight: 900;
    transition: .25s;
}

.card-footer a:hover {
    background: var(--orange);
    color: #2a1600;
}

/* SIDEBAR */

.sidebar-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--blue-border);
    padding: 26px;
    border-radius: 30px;
    box-shadow: 0 18px 55px rgba(16, 24, 40, .08);
    position: sticky;
    top: 90px;
}

.sidebar-card h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 18px;
}

.trend-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(125, 180, 230, .25);
    color: var(--dark);
}

.trend-item:last-child {
    border-bottom: none;
}

.trend-item span {
    color: var(--orange-dark);
    font-size: 22px;
    font-weight: 900;
}

.trend-item strong {
    display: block;
    line-height: 1.35;
}

.trend-item small {
    display: block;
    color: var(--muted);
    margin-top: 5px;
    font-weight: 700;
}

.empty-state {
    grid-column: 1 / -1;
    background: white;
    border-radius: 24px;
    padding: 30px;
    color: var(--muted);
    font-weight: 800;
}

/* PÁGINA DA NOTÍCIA */

.article-layout {
    width: 90%;
    max-width: 1350px;
    margin: 45px auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 35px;
    align-items: start;
}

.article-page {
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--blue-border);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(16, 24, 40, .10);
}

.article-header {
    padding: 45px 50px 25px;
}

.article-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), #ffd166);
    color: #3b2200;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.article-header h1 {
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: -2px;
    color: var(--dark);
    margin-bottom: 18px;
}

.article-resume {
    font-size: 20px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 850px;
}

.article-meta {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.article-meta span {
    background: var(--soft-blue);
    border: 1px solid var(--blue-border);
    color: var(--dark);
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 800;
}

.article-cover {
    width: calc(100% - 60px);
    height: 430px;
    object-fit: cover;
    margin: 10px 30px 0;
    border-radius: 26px;
}

.article-content {
    padding: 40px 50px;
    font-size: 19px;
    line-height: 1.9;
    color: var(--text);
}

.like-box {
    padding: 0 50px 45px;
}

.like-box button,
.comment-form button {
    border: none;
    background: linear-gradient(135deg, var(--orange), #ffd166);
    color: #2a1600;
    padding: 15px 24px;
    border-radius: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(255, 138, 0, .22);
    transition: .25s;
}

.like-box button:hover,
.comment-form button:hover {
    transform: translateY(-2px);
}

.article-sidebar {
    position: sticky;
    top: 90px;
}

/* FOOTER */

footer {
    margin-top: 70px;
    background: var(--dark);
    color: white;
    padding: 50px 5%;
}

.footer-content {
    max-width: 1350px;
    margin: 0 auto;
}

.footer-content h2 {
    font-size: 38px;
}

.footer-content p {
    color: #cbd5e1;
    margin-top: 8px;
}

/* RESPONSIVO */

@media (max-width: 1050px) {
    .desktop-nav {
        gap: 0;
    }

    .desktop-nav a {
        font-size: 13px;
        padding: 11px 10px;
    }

    .content-layout,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .sidebar,
    .article-sidebar {
        display: none;
    }

    .headline-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .top-header {
        height: auto;
        min-height: 58px;
        padding: 10px 4%;
        flex-direction: column;
        gap: 10px;
    }

    .mini-brand {
        display: none;
    }

    .desktop-nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .desktop-nav a {
        white-space: nowrap;
        font-size: 13px;
        padding: 10px 13px;
    }

    .brand-hero {
        min-height: 165px;
    }

    .main-logo-wrap {
        width: min(360px, 88vw);
        height: 130px;
    }

    .main-logo {
        max-height: 130px;
    }

    .breaking-news {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero {
        width: 94%;
        min-height: 500px;
        border-radius: 28px;
        margin: 24px auto;
    }

    .hero-glass {
        margin: 22px;
        padding: 26px;
        border-radius: 24px;
    }

    .hero h1 {
        letter-spacing: -1.5px;
    }

    .home-wrapper,
    .article-layout {
        width: 94%;
    }

    .search-panel {
        flex-direction: column;
        align-items: stretch;
    }

    .search-panel form {
        width: 100%;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .article-header {
        padding: 30px 24px 20px;
    }

    .article-cover {
        width: calc(100% - 28px);
        height: 280px;
        margin: 5px 14px 0;
    }

    .article-content {
        padding: 28px 24px;
        font-size: 17px;
    }
}

@media (max-width: 560px) {
    .brand-hero {
        min-height: 145px;
    }

    .main-logo-wrap {
        width: 92vw;
        height: 118px;
    }

    .main-logo {
        max-height: 118px;
    }

    .headline-row {
        grid-template-columns: 1fr;
    }

    .search-panel {
        padding: 22px;
        border-radius: 24px;
    }

    .search-panel h2 {
        font-size: 26px;
    }

    .search-panel form {
        flex-direction: column;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .card-image {
        height: 210px;
    }

    .card-body {
        padding: 20px;
    }

    .card-body h3 {
        font-size: 22px;
    }

    .card-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .card-footer a {
        text-align: center;
    }
}