.homeNewsArea {
    background: transparent;
}

.homeNewsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 380px));
    gap: 24px;
    max-width: 1220px;
    margin: 0 auto;
    justify-content: center;
    justify-items: stretch;
}

.homeNewsCard {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 420px;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(15, 24, 38, 0.96), rgba(8, 14, 24, 0.98));
    border: 1px solid rgba(44, 255, 154, 0.14);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.homeNewsCard:hover {
    transform: translateY(-4px);
    border-color: rgba(44, 255, 154, 0.24);
}

.homeNewsCard__imageWrap {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #101827;
}

.homeNewsCard__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.homeNewsCard__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(44, 255, 154, 0.08), rgba(7, 13, 24, 0.98));
}

.homeNewsCard__image--placeholder img {
    width: 72px;
    opacity: 0.85;
}

.homeNewsCard__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

.homeNewsCard__metaTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.homeNewsBadge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(44, 255, 154, 0.18);
    background: rgba(44, 255, 154, 0.08);
    color: #2cff9a;
}

.homeNewsBadge--info {
    background: rgba(52, 152, 219, 0.15);
    color: #6ec8ff;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.homeNewsBadge--recruit {
    background: rgba(46, 204, 113, 0.15);
    color: #2cff9a;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.homeNewsBadge--update {
    background: rgba(241, 196, 15, 0.15);
    color: #ffd95e;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.homeNewsBadge--event {
    background: rgba(231, 76, 60, 0.15);
    color: #ff8b7f;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.homeNewsBadge--default {
    background: rgba(88, 101, 242, 0.15);
    color: #aab4ff;
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.homeNewsCard__date {
    font-size: 13px;
    color: rgba(255,255,255,0.58);
    white-space: nowrap;
}

.homeNewsCard__title {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.homeNewsCard__title a {
    color: #ffffff;
    text-decoration: none;
}

.homeNewsCard__title a:hover {
    color: #2cff9a;
}

.homeNewsCard__excerpt {
    margin: 0 0 24px;
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.7;
    flex: 1;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.homeNewsCard__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.homeNewsCard__author {
    color: rgba(255,255,255,0.62);
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    min-width: 0;
    max-width: 65%;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.homeNewsCard__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    min-width: 180px;
    padding: 0 28px;
    border-radius: 14px;
    background: linear-gradient(90deg, #18e0a0 0%, #1fd0b5 50%, #27bde8 100%);
    color: #03140f;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.18s ease;
}

.homeNewsCard__button:hover {
    background: linear-gradient(90deg, #13c48b 0%, #17b79f 50%, #1fa7d6 100%);
    color: #03140f;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.homeNewsArea__more {
    margin-top: 34px;
    text-align: center;
}

.homeNewsArea__moreBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 12px;
    border: 1px solid rgba(44, 255, 154, 0.2);
    background: rgba(44, 255, 154, 0.08);
    color: #2cff9a;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.homeNewsArea__moreBtn:hover {
    background: rgba(44, 255, 154, 0.14);
    color: #ffffff;
}

.homeNewsEmpty {
    max-width: 760px;
    margin: 0 auto;
    padding: 46px 28px;
    text-align: center;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(15, 24, 38, 0.96), rgba(8, 14, 24, 0.98));
    border: 1px solid rgba(44, 255, 154, 0.12);
}

.homeNewsEmpty h4 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 28px;
}

.homeNewsEmpty p {
    margin: 0;
    color: rgba(255,255,255,0.68);
    font-size: 16px;
}

@media (max-width: 1399px) {
    .homeNewsGrid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
        max-width: 1140px;
    }
}

@media (max-width: 991px) {
    .homeNewsGrid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        max-width: 900px;
    }

    .homeNewsCard {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .homeNewsGrid {
        grid-template-columns: 1fr;
    }

    .homeNewsCard {
        max-width: 100%;
    }

    .homeNewsCard__metaTop,
    .homeNewsCard__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .homeNewsCard__title {
        font-size: 22px;
    }

    .homeNewsCard__author {
        max-width: 100%;
    }

    .homeNewsCard__button {
        width: 100%;
    }
}
