.farmer-top-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.farmer-big-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 38rem;
}

.farmer-big-card .card-img {
    width: 45%;
}

.farmer-big-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.farmer-big-card .card-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-tag {
    font-size: 1.3rem;
    color: #0b7135;
    background: #f0f7f2;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    margin-bottom: 2.5rem;
    width: fit-content;
}

.card-tag i {
    color: #ffcf4d;
    width: 1.4rem;
    height: 1.4rem;
}

.farmer-big-card h3 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2rem;
    word-break: keep-all;
    color: #111;
}

.farmer-big-card p {
    font-size: 1.6rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 3rem;
    word-break: keep-all;
}

.view-more {
    margin-top: auto;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0b7135;
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Bottom Section */
.farmer-bottom-section {
    background: #f4f8f4;
    border-radius: 30px;
    padding: 6rem 5rem;
    position: relative;
    overflow: hidden;
}

.farmer-bottom-section::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 100px;
    width: 150px;
    height: 200px;
    background: url('../image/leaf_deco.png') no-repeat;
    background-size: contain;
    opacity: 0.3;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 5rem;
    color: #111;
}

.section-title .lucide-leaf {
    color: #0b7135;
    width: 3.2rem;
    height: 3.2rem;
}

.section-title .lucide-sparkles {
    color: #ffcf4d;
    width: 2.4rem;
    height: 2.4rem;
}

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

.farmer-small-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.farmer-small-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.farmer-small-card .card-img {
    height: 18rem;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.farmer-small-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.farmer-small-card .card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.farmer-small-card .card-tag {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    padding: 0.3rem 1rem;
}

.farmer-small-card h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
}

.farmer-small-card p {
    font-size: 1.4rem;
    color: #777;
    line-height: 1.5;
    margin-bottom: 2rem;
    word-break: keep-all;
}

.farmer-small-card .view-more {
    font-size: 1.3rem;
}

.load-more-container {
    margin-top: 6rem;
    display: flex;
    justify-content: center;
}

.load-more-btn {
    background: #0b7135;
    color: #fff;
    border: none;
    padding: 1.5rem 8rem;
    border-radius: 8px;
    font-size: 2rem;
    font-weight: 700;
    transition: background 0.3s;
}

.load-more-btn:hover {
    background: #095a2a;
}

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

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

    .farmer-big-card {
        flex-direction: column;
        height: auto;
    }

    .farmer-big-card .card-img {
        width: 100%;
        height: 25rem;
    }

    .farmer-bottom-section {
        padding: 4rem 2rem;
    }

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