.reporter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 4rem 0;
}

.reporter-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 72rem;
    transition: transform 0.3s ease;
}

.reporter-card:hover {
    transform: translateY(-10px);
}

.card-inner-top {
    padding: 5rem 3.5rem;
    color: #fff;
    flex: 1;
    position: relative;
}

.reporter-card.card-blue .card-inner-top {
    background: #5b9bd5;
}

.reporter-card.card-purple .card-inner-top {
    background: #8ba8d1;
}

.reporter-card.card-grey .card-inner-top {
    background: #a5b1c2;
}

.card-inner-top h3 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    word-break: keep-all;
}

.card-inner-top .hashtags {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    display: block;
}

.card-inner-top .company-name {
    font-size: 2rem;
    font-weight: 700;
}

.card-btn-more {
    position: absolute;
    bottom: 3rem;
    right: 3.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.card-btn-more i {
    width: 2.8rem;
    height: 2.8rem;
}

.card-inner-mid {
    height: 35rem;
}

.card-inner-mid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-inner-ft {
    height: 8rem;
    background: #f4f7f9;
    display: flex;
    align-items: center;
    padding: 0 3.5rem;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.reporter-card.card-blue .card-inner-ft {
    color: #4a86bd;
}

.reporter-card.card-purple .card-inner-ft {
    color: #6281af;
}

.reporter-card.card-grey .card-inner-ft {
    color: #51637c;
}

@media (max-width: 1024px) {
    .reporter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reporter-grid {
        grid-template-columns: 1fr;
    }

    .reporter-card {
        height: 65rem;
    }
}