.banner {
    position: relative;
    margin-top: 70px;
    background-size: cover;
    background-position: center;
    height: 650px;
    transition: background-image 0.4s ease-in-out;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    color: var(--primary-color);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.banner-arrow:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.banner-arrow-left {
    left: 30px;
}

.banner-arrow-right {
    right: 30px;
}

/* giới thiệu sơ lược */
.about-section {
    background-image: url('../images/index/vietnam-cambodia.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.about-section .title-with-line {
    border-left: 4px solid #df0012;
    padding-left: 15px;
    margin-bottom: 40px;
}


.about-section .content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* Eyebrow — nhỏ, trên cùng */


/* H1 — chỉ tên thương hiệu, điểm nhấn lớn nhất */
.about-section h1 {
    font-weight: 600;
    font-size: 3.8rem;
    line-height: 1.05;
    color: var(--primary-color);
    letter-spacing: -1px;
    margin-bottom: 0;
}
.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #df0012;
    margin-top: 0;
    margin-bottom: 10px; 
}
/* Subtitle — ngành nghề, nổi bật hơn desc */
.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 500;
    color: #3a3a3a;
    letter-spacing: 0.3px;
    margin-top: 10px;
    margin-bottom: 50px;
}

/* Đoạn mô tả — ngắn gọn, dễ đọc */
.hero-desc {
    color: black;
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 480px;
    margin-top: 0;
    margin-bottom: 80px;
}






/* Giá trị cốt lõi */
.values-section {
    
    padding: 80px 0;
}

.container-flex.values {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--spacing-4);
}

.value-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}


.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}


.card-header .icon {
    color: var(--secondary-color);
    font-size: 45px;
}


.card-header .title {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
}


.card-body p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
    text-align: left;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

/* hệ thống ruộng lúa */
.farms-section{
    margin-bottom: 40px;
}
.content-farm{
    display: flex;
    margin-bottom: 50px;
    gap: 20px;
}
.section-header-farms {
    align-items: center;
    flex: 3.3;
    
}
.section-header-farms h2{
    margin-bottom: 20px;
}


.content-farm .picture{
    flex: 6.7;
    height: 400px;
    overflow: hidden;
}

.content-farm .picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius);
}



.farm-small{
    display:flex;
    gap:35px;
}

.farm-item{
    flex:0 0 calc((100% - 35px * 2) / 3);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
}

.farm-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.45s;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.farm-item-content{
    display: flex;
    margin-top: 20px;
    padding: 10px 20px;
    gap: 20px;
}
.farm-icon{
    color: var(--secondary-color);
    font-size: 50px;
}

/* vùng nguyên liệu thủy sản */

.seafarms-section{
    margin-bottom: 40px;
}
.content-seafarm{
    display: flex;
    margin-bottom: 50px;
    gap: 20px;
}
.section-header-seafarms {
    align-items: center;
    flex: 3.3;
    
}
.section-header-seafarms h2{
    margin-bottom: 20px;
}
.hero-desc{
    margin-bottom: 30px;
}
.note-item {
    display: flex;
    align-items: flex-start; 
    margin-top: 20px;
    gap: var(--spacing-1);
}

.note-item .icon {
    width: 45px;
    height: 45px;
    border: 1px solid var(--primary-color); /* Vòng tròn mảnh */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.note-item .icon i {
    color: var(--primary-color); /* Màu icon đồng bộ với thương hiệu */
    font-size: 18px;
}

.note-item span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
}

.note-item p {
    margin: 2px 0 0 0;
    font-size: 14px;
    color: var(--text-light);
}

.content-seafarm .picture{
    flex: 6.7;
    height: 400px;
    overflow: hidden;
}

.content-seafarm .picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius);
}



.seafarm-small{
    display:flex;
    gap:35px;
}

.seafarm-item{
    flex:0 0 calc((100% - 35px * 2) / 3);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
}

.seafarm-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.45s;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.seafarm-item-content{
    display: flex;
    margin-top: 20px;
    padding: 10px 20px;
    gap: 20px;
}
.seafarm-icon{
    color: var(--secondary-color);
    font-size: 50px;
}







/* lĩnh vực hoạt động */
.activities-section .slider-arrows .arrow-btn {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #111;
    cursor: pointer;
    margin-left: 15px;
    transition: color 0.3s;
}

.activities-section .slider-arrows .arrow-btn:hover {
    color: var(--primary-color);
}


.activity-grid {
    display: grid;
    max-width: var(--max-width);
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.activity-card {
    background-color: var(--white);
    min-height: 450px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    gap: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.activity-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.activity-card .activity-picture {
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
    overflow: hidden;
}
.activity-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

}

.activity-card .card-title {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.activity-card .card-desc {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 20px;
}

.activity-card .corner-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65px;
    height: 65px;
    background-color: var(--primary-color);
    border-top-left-radius: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 15px 18px;
    color: var(--white);
    transition: all 0.3s ease;
}

.activity-card .corner-btn i {
    font-size: 16px;
}


.activity-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #f7b2b7;
}

.activity-card:hover .card-icon,
.activity-card:hover .card-title {
    color: #e55353;
}

.activity-card:hover .corner-btn {
    background-color: #fca5a5;
    color: #d81b22;
}

/* sản phẩm */
.products-section {
    padding: 60px 0 ;
    background:
        linear-gradient(180deg,
            rgba(177, 223, 183, 0.25) 0%,
            rgba(255, 255, 255, 1) 35%,
            rgba(255, 255, 255, 1) 70%,
            rgba(27, 94, 32, 0.05) 100%);
    overflow: hidden;
}

.products-section .section-header {
    margin-bottom: 28px;
}

.products-section h2 {
    color: var(--primary-color);
}

/* ── Outer wrapper ── */
.product-slider-outer {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* ── Track: positioning context, no scroll ── */
.product-slider-track {
    position: relative;
    height: 460px;
    overflow: hidden;
    width: 100%;
}

/* ── Card base: absolute, stacked at center, hidden by default ── */
.products-item {
    position: absolute;
    top: 0;
    left: 50%;
    width: 65%;
    height: 100%;
    display: flex;
    flex-direction: row;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);

    /* Default state: hidden behind center */
    opacity: 0;
    transform: translateX(-50%) scale(0.85);
    filter: blur(1px) brightness(0.6);
    z-index: 0;
    pointer-events: none;
    user-select: none;

    transition:
        opacity    650ms ease-out,
        transform  650ms ease-out,
        filter     650ms ease-out,
        box-shadow 650ms ease-out;
    will-change: opacity, transform, filter;
}

/* ── Left preview card ── */
.products-item.is-left {
    opacity: 0.35;
    transform: translateX(-87%) scale(0.85);
    filter: blur(1.5px) brightness(0.65);
    z-index: 1;
    pointer-events: none;
}

/* ── Center card: sharp, prominent ── */
.products-item.is-center {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    filter: blur(0) brightness(1);
    z-index: 3;
    pointer-events: auto;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ── Right preview card ── */
.products-item.is-right {
    opacity: 0.35;
    transform: translateX(-13%) scale(0.85);
    filter: blur(1.5px) brightness(0.65);
    z-index: 1;
    pointer-events: none;
}

/* ── Text column ── */
.products-item .content {
    width: 28%;
    flex-shrink: 0;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.products-item .content h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.products-item .content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

/* ── Image column ── */
.products-item .picture {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.products-item .picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Navigation arrows ── */
.product-slider-outer .arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 17px;
    color: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-slider-outer .arrow-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(27, 94, 32, 0.3);
}

.product-slider-outer .arrow-btn--prev {
    left: max(20px, 3vw);
}

.product-slider-outer .arrow-btn--next {
    right: max(20px, 3vw);
}
/* tin tức & sự kiện */
.news-section .container-flex {
    justify-content: space-between;
    align-items: stretch;
}

.container-flex-left,
.container-flex-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.container-flex-left {
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}

.container-flex-left .content {
    padding: var(--spacing-2);
}
.container-flex-right-small {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-2);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    gap: var(--spacing-2);
}

.container-flex-right-small h4 {
    padding-right: var(--spacing-2);
    font-size: 15px;
    color: var(--text-main);
}

.container-flex-right-small img {
    width: 50%;
    height: 140px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    flex-shrink: 0;
}

/* REPONSIVE */
@media (max-width: 992px) {

    /* --- Banner --- */
    .banner {
        height: 420px;
        margin-top: 60px;
    }

    .banner-arrow {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .banner-arrow-left {
        left: 16px;
    }

    .banner-arrow-right {
        right: 16px;
    }

    /* --- About Section --- */
    .about-section {
        background-image: url('../images/index/background-mobile.png');
        height: auto;
        min-height: 0;
        padding: 64px 0;
    }

    .hero-eyebrow {
        font-size: 0.8rem;
        letter-spacing: 3px;
        margin-top: 0;
    }

    .about-section h1 {
        font-size: 2.6rem;
        margin-bottom: 0;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-top: 8px;
        margin-bottom: 18px;
    }

    .hero-desc {
        font-size: 0.95rem;
        max-width: 100%;
        margin-top: 0;
        margin-bottom: 32px;
    }

    .about-section .container-flex {
        gap: 24px;
    }

    /* Value cards: 2 cột + 1 hàng dưới */
    .container-flex.values {
        flex-wrap: wrap;
        gap: var(--spacing-3);
    }

    .value-card {
        flex: 0 0 calc(50% - var(--spacing-3));
    }

    /* --- Activities --- */
    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .activity-card {
        height: auto;
        min-height: 380px;
    }

    /* --- Products --- */
    .product-slider-track {
        height: 380px;
    }

    .products-item {
        width: 75%;
    }

    .products-item.is-left {
        transform: translateX(-90%) scale(0.85);
    }

    .products-item.is-right {
        transform: translateX(-10%) scale(0.85);
    }

    .products-item .content {
        width: 32%;
        padding: 24px 18px;
    }

    .products-item .content h3 {
        font-size: 1.1rem;
    }

    .products-item .content p {
        font-size: 0.82rem;
    }

    .product-slider-outer .arrow-btn {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .product-slider-outer .arrow-btn--prev {
        left: max(12px, 2vw);
    }

    .product-slider-outer .arrow-btn--next {
        right: max(12px, 2vw);
    }

    /* --- News --- */
    .news-section .container-flex {
        gap: 20px;
    }

    .container-flex-right-small {
        flex-direction: column;
        padding: var(--spacing-2);
    }

    .container-flex-right-small img {
        width: 100%;
        height: 140px;
    }

    .container-flex-right-small h4 {
        padding: 0 var(--spacing-1);
    }

    /* --- Farms & Seafarms Section --- */
    .content-farm,
    .content-seafarm {
        flex-direction: column;
    }

    .section-header-farms,
    .section-header-seafarms {
        flex: auto;
    }

    .section-header-farms h2,
    .section-header-seafarms h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .content-farm .picture,
    .content-seafarm .picture {
        flex: auto;
        height: 300px;
    }

    .farm-small,
    .seafarm-small {
        gap: 20px;
    }

    .farm-item,
    .seafarm-item {
        flex: 0 0 calc((100% - 20px * 2) / 3);
    }

    .farm-item img,
    .seafarm-item img {
        height: 200px;
    }

    .farm-icon,
    .seafarm-icon {
        font-size: 36px;
    }

    .farm-item-content,
    .seafarm-item-content {
        padding: 8px 14px;
        gap: 14px;
    }

    .note-item {
        gap: 6px;
    }
}

/* ----- Mobile: < 768px ----- */
@media (max-width: 768px) {

    /* --- Banner --- */
    .banner {
        height: 280px;
        margin-top: 54px;
        background-position: center;
    }

    .banner-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .banner-arrow-left {
        left: 8px;
    }

    .banner-arrow-right {
        right: 8px;
    }

    /* --- About Section --- */
    .about-section {
        background-image: url('../images/index/background-mobile.png');
        height: auto;
        min-height: 0;
        padding: 56px 0;
    }

    .about-section .container-flex {
        flex-direction: column;
        gap: 24px;
    }
    .about-section .content{
        width: 100%;
    }

    .hero-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 2.5px;
        margin-top: 0;
        margin-bottom: 6px;
    }

    .hero-subtitle {
        font-size: 0.88rem;
        margin-top: 0;
        margin-bottom: 14px;
    }

    .hero-desc {
        font-size: 0.9rem;
        margin-top: 0;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .about-section h1 {
        font-size: 2rem;
    }

    .about-section .title-with-line {
        margin-bottom: 30px;
    }

    .about-section .picture {
        display: none;
    }

    /* Value cards: 1 cột */
    .container-flex.values {
        flex-direction: column;
        gap: 24px;
    }

    .value-card {
        flex: 1 1 100%;
    }

    .card-header .title {
        font-size: 18px;
    }

    .card-header .icon {
        font-size: 36px;
    }

    /* --- Activities --- */
    .activities-section {
        padding: 40px 0;
    }

    .activity-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .activity-card {
        min-height: unset;
    }

    .activity-card .activity-picture {
        height: 180px;
    }

    .activity-card .card-title {
        font-size: 18px;
    }

    .activity-card .card-desc {
        font-size: 14px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 24px;
    }

    /* --- Products --- */
    .products-section {
        padding: 40px 0 0;
    }

    .product-slider-track {
        height: auto;
        min-height: 440px;
    }

    .products-item {
        width: 88%;
        flex-direction: column-reverse;
        height: auto;
        min-height: 440px;
    }

    .products-item.is-left {
        transform: translateX(-93%) scale(0.88);
    }

    .products-item.is-right {
        transform: translateX(-7%) scale(0.88);
    }

    .products-item .content {
        width: 100%;
        padding: 18px 16px;
        flex-shrink: 1;
    }

    .products-item .content h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .products-item .content p {
        font-size: 0.8rem;
    }

    .products-item .picture {
        height: 240px;
        flex: none;
    }

    .product-slider-outer .arrow-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .product-slider-outer .arrow-btn--prev {
        left: max(8px, 1.5vw);
    }

    .product-slider-outer .arrow-btn--next {
        right: max(8px, 1.5vw);
    }

    /* --- News --- */
    .news-section .container-flex {
        flex-direction: column;
        gap: 20px;
    }

    .container-flex-left {
        width: 100%;
    }

    .container-flex-right {
        width: 100%;
    }

    .container-flex-right-small {
        flex-direction: column;
        gap: 12px;
        padding: var(--spacing-2);
    }

    .container-flex-right-small h4 {
        padding: 0 var(--spacing-1);
    }

    .container-flex-right-small img {
        width: 100%;
        height: 160px;
    }

    /* --- Farms & Seafarms Section --- */
    .content-farm,
    .content-seafarm {
        gap: 16px;
    }

    .content-farm .picture,
    .content-seafarm .picture {
        height: 220px;
    }

    .section-header-farms h2,
    .section-header-seafarms h2 {
        font-size: 20px;
    }

    .section-header-farms .title-with-line,
    .section-header-seafarms .title-with-line {
        font-size: 20px;
        border-left-width: 3px;
        padding-left: 12px;
    }

    .hero-desc {
        margin-bottom: 20px;
    }

    /* Farm & Seafarm cards: swipe ngang */
    .farm-small,
    .seafarm-small {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .farm-small::-webkit-scrollbar,
    .seafarm-small::-webkit-scrollbar {
        display: none;
    }

    .farm-item,
    .seafarm-item {
        flex: 0 0 75%;
        scroll-snap-align: start;
    }

    .farm-item img,
    .seafarm-item img {
        height: 180px;
    }

    .farm-icon,
    .seafarm-icon {
        font-size: 30px;
    }

    .farm-item-content,
    .seafarm-item-content {
        padding: 8px 14px;
        gap: 12px;
    }

    .farm-item-title h3,
    .seafarm-item-title h3 {
        font-size: 15px;
    }

    .farm-item-title p,
    .seafarm-item-title p {
        font-size: 13px;
    }

    /* Note items */
    .note-item {
        margin-top: 14px;
    }

    .note-item .icon {
        width: 38px;
        height: 38px;
    }

    .note-item .icon i {
        font-size: 16px;
    }

    .note-item span {
        font-size: 14px;
    }

    .note-item p {
        font-size: 13px;
    }
}

/* ----- Small phones: ≤ 480px ----- */
@media (max-width: 480px) {
    .banner {
        height: 200px;
        margin-top: 50px;
    }

    .banner-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .banner-arrow-left { left: 6px; }
    .banner-arrow-right { right: 6px; }

    .hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-top: 0;
        margin-bottom: 4px;
    }

    .hero-subtitle {
        font-size: 0.78rem;
        margin-top: 0;
        margin-bottom: 12px;
    }

    .hero-desc {
        font-size: 0.82rem;
        margin-top: 0;
        margin-bottom: 18px;
        max-width: 100%;
    }

    .about-section h1 {
        font-size: 1.5rem;
    }

    .card-header .title {
        font-size: 16px;
    }

    .card-header .icon {
        font-size: 30px;
    }

    .activities-section {
        padding: 32px 0;
    }

    .activity-card {
        min-height: unset;
    }

    .activity-card .activity-picture {
        height: 150px;
    }

    .activity-card .card-title {
        font-size: 16px;
    }

    .products-section .picture {
        height: 180px;
    }

    .container-flex-right-small img {
        height: 120px;
    }

    /* --- Farms & Seafarms Section --- */
    .content-farm .picture,
    .content-seafarm .picture {
        height: 180px;
    }

    .section-header-farms h2,
    .section-header-seafarms h2 {
        font-size: 18px;
    }

    .section-header-farms .title-with-line,
    .section-header-seafarms .title-with-line {
        font-size: 18px;
        padding-left: 10px;
    }

    .hero-desc {
        margin-bottom: 16px;
        font-size: 0.82rem;
    }

    /* Farm & Seafarm cards */
    .farm-small,
    .seafarm-small {
        gap: 12px;
    }

    .farm-item,
    .seafarm-item {
        flex: 0 0 85%;
    }

    .farm-item img,
    .seafarm-item img {
        height: 150px;
    }

    .farm-icon,
    .seafarm-icon {
        font-size: 26px;
    }

    .farm-item-content,
    .seafarm-item-content {
        padding: 6px 12px;
        gap: 10px;
    }

    .farm-item-title h3,
    .seafarm-item-title h3 {
        font-size: 14px;
    }

    .farm-item-title p,
    .seafarm-item-title p {
        font-size: 12px;
    }

    /* Note items */
    .note-item .icon {
        width: 32px;
        height: 32px;
    }

    .note-item .icon i {
        font-size: 14px;
    }

    .note-item span {
        font-size: 13px;
    }

    .note-item p {
        font-size: 12px;
    }
}