:root {
    --green-dark: #00563f;
    --green-light: #008060;
    --white: #ffffff;
    --black: #000000;
    --coffee-brown: #4b3621;
}

.first-baner {
    width: 100%;
    height: 500px;
    background: linear-gradient(to bottom, #00563f, transparent 75%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
}


/*right-card*/

.post-visual-wrapper {
    width: 100%;
}

.post-visual img {
    height: 470px;
    width: 100%;
    position: relative;
    border-radius: 14px 14px 0px 0px;
    object-fit: cover;
}


/*header-right-card*/

.cover-badge {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 6;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient( 90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88));
    color: var(--green-dark);
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 10px 26px rgba(0, 86, 63, 0.08);
    border: 1px solid rgba(0, 128, 96, 0.06);
    backdrop-filter: blur(4px);
}

.read-time {
    position: absolute;
    left: 20px;
    top: 12px;
    z-index: 6;
    padding: 7px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.005);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}


/*end-header-right-card*/


/* SVG animations */

.visual-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: block;
}

.svg-decor {
    position: absolute;
    left: 6%;
    z-index: 4;
    width: 225px;
    pointer-events: none;
    top: 45px;
}

.coffee-svg {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.95;
    filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.24));
    transform-origin: center bottom;
}

.visual-content img {
    width: 285px;
    position: absolute;
    top: 20%;
    right: 66%;
    ;
}

.cup-path {
    stroke-width: 2.6;
    stroke: rgba(255, 255, 255, 0.95);
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: rgba(255, 255, 255, 0.02);
}

.handle-path {
    stroke-width: 2.4;
    stroke: rgba(255, 255, 255, 0.95);
}

.steam {
    stroke-width: 1.6;
    stroke: rgba(255, 255, 255, 0.88);
    stroke-linecap: round;
    opacity: 0.95;
}

@keyframes float-svg {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes steam-move {
    0% {
        opacity: 0.2;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translateY(-8px) scale(1.02);
    }
    100% {
        opacity: 0.2;
        transform: translateY(0) scale(1);
    }
}

.coffee-svg {
    animation: float-svg 5.6s ease-in-out infinite;
}

.coffee-svg .s1 {
    animation: steam-move 3.2s ease-in-out infinite;
    transform-origin: center bottom;
}

.coffee-svg .s2 {
    animation: steam-move 3.8s ease-in-out 0.6s infinite;
    transform-origin: center bottom;
}

@media (max-width: 992px) {
    .svg-decor {
        width: 140px;
        height: 140px;
        left: 5%;
    }
    .post-visual img {
        height: 385px;
    }
}

@media (max-width: 576px) {
    .post-visual {
        height: 300px;
        border-radius: 12px;
    }
    .post-visual img {
        height: 300px;
    }
    .post-visual::before,
    .post-visual::after {
        border-radius: 12px;
    }
    .read-time {
        left: 12px;
        top: 12px;
    }
    .cover-badge {
        right: 12px;
        top: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .coffee-svg,
    .coffee-svg .s1,
    .coffee-svg .s2 {
        animation: none;
        transform: none;
    }
    .floating-card,
    .post-visual {
        transition: none;
    }
}


/* end-SVG-animations */


/*--the bottom--*/

.recent-post {
    border-radius: 16px;
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0.88), rgba(250, 248, 246, 0.96));
}

.recent-post .card-body {
    padding: 26px;
    position: relative;
    z-index: 2;
}

.text-coffe {
    font-size: 22px;
    font-weight: 900;
    color: rgba(75, 54, 33, 0.9);
    background: none;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
}

.text-coffe::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80%;
    height: 3px;
    background: linear-gradient(to left, rgba(140, 100, 70, 0.8), rgba(210, 180, 160, 0.5), rgba(0, 0, 0, 0));
    border-radius: 3px;
}

.recent-post .card-text {
    margin-top: 20px;
    color: rgba(0, 0, 0, 0.72);
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 14px;
}

.recent-post blockquote {
    border-left: 4px solid rgba(0, 128, 96, 0.24) !important;
    padding: 14px;
    background: linear-gradient(180deg, rgba(0, 128, 96, 0.03), rgba(0, 0, 0, 0));
    border-radius: 10px;
    color: rgba(0, 0, 0, 0.65);
    font-style: italic;
    transition: background 0.28s, transform 0.28s;
    font-size: 14px;
}

.recent-post blockquote:hover {
    transform: translateX(4px);
    background: linear-gradient(180deg, rgba(0, 128, 96, 0.06), rgba(0, 0, 0, 0));
}

.cover-badge {
    position: absolute;
    right: 18px;
    top: 18px;
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88));
    color: var(--green-dark);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0, 86, 63, 0.06);
    z-index: 6;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 128, 96, 0.06);
}

.share-fixed-2 {
    display: none;
}

.share-fixed {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 8;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(20, 10, 6, 0.12);
    transition: transform 0.22s, box-shadow 0.22s, opacity 0.22s;
    border: none;
    background: linear-gradient(90deg, var(--green-light), var(--green-dark));
    padding-top: 5px;
}

.share-btn.telegram i {
    color: rgb(186, 235, 255);
    ;
}

.share-btn.whatsapp i {
    color: #cef9de;
}

.share-btn.instagram i {
    color: #f7d2e2;
}

.share-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

@media (max-width: 992px) {
    .share-fixed {
        left: -32px;
    }
}

@media (max-width: 610px) {
    .recent-post {
        border-radius: 12px;
    }
    .share-fixed-2 {
        display: flex;
        gap: 12px;
        margin-top: 25px;
    }
    .share-btn {
        width: 38px;
        height: 38px;
    }
    .share-fixed {
        display: none;
    }
}


/*--end-the bottom--*/


/*---article---*/

.section-title {
    display: flex;
    align-items: center;
    color: var(--white);
    background: linear-gradient(90deg, #00806024, #00563f8f);
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 86, 63, 0.12);
    font-weight: 800;
    font-size: 14px;
    position: relative;
}

.section-title img {
    width: 120px;
    position: absolute;
    left: 10px;
}


/* .svg {
  width: 155px;
  position: absolute;
  right: 55%;
  bottom: -48%;
} */

.articles-section {
    padding: 60px 0;
}

.articles-section .container {
    padding: 22px 14px;
}

.article-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(34, 42, 69, 0.06);
    padding: 20px 16px 18px;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    transition: transform 0.14s ease, box-shadow 0.14s ease;
    margin-top: 65px;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(34, 42, 69, 0.09);
}

.article-img {
    position: absolute !important;
    top: -28px !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: 244px;
    height: 170px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(34, 42, 69, 0.08);
    background: #f0f4fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 0px;
}

.article-body {
    margin-top: 130px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.article-body h5 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: #26313b;
    text-align: right;
    line-height: 1.25;
}

.article-excerpt {
    margin: 0;
    font-size: 13px;
    color: #8c9aa6;
    text-align: justify;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 0 6px;
}

.article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    border: 1px solid rgba(103, 255, 126, 0.12);
    border-radius: 12px !important;
    background: #edf4f1;
    width: 238px;
    height: 36px;
    margin-inline: auto;
}

.article-date {
    font-size: 12px;
    color: #9ea0aa;
    padding: 10px;
}

.btn-read {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--green-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    padding: 0 10px;
    transition: all 0.2s ease;
}

.btn-read:hover {
    color: var(--green-dark);
}

.btn-read img {
    width: 12px;
    height: 12px;
    transform: rotate(180deg);
}

@media (max-width: 1270px) {
    .article-card {
        width: min(92%, 292px);
        margin: 0 auto;
        margin-bottom: 10px;
    }
    .article-body {
        margin-top: 100px;
    }
    .btn-read {
        width: 100%;
        max-width: 247px;
        box-sizing: border-box;
    }
    .article-img {
        height: 140px;
    }
}

@media (max-width: 1400px) {
    .article-footer {
        width: 200px;
    }
    .article-img {
        width: 205px;
    }
}

@media (max-width: 1270px) {
    .article-footer {
        width: 175px;
    }
    .article-img {
        height: 140px;
        width: 200px;
    }
    .section-title {
        margin-bottom: 45px;
    }
    .article-body h5 {
        margin-top: 10px !important;
    }
}

@media (max-width: 1200px) {
    .article-img {
        height: 120px;
        width: 155px;
    }
    .article-footer {
        width: 150px;
    }
    .btn-read {
        font-size: 10px;
    }
    .article-body h5 {
        margin-top: 0px !important;
    }
    .article-card {
        margin-top: 25px;
    }
}

@media (max-width: 992px) {
    .btn-read {
        font-size: 13px;
    }
    .article-footer {
        width: 255px;
    }
    .section-title {
        margin-bottom: 30px;
    }
}


/*---end article---*/


/*--left-card--*/

.weekly-read {
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 14px 40px rgba(3, 40, 29, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
    color: #062016;
    height: 490px;
    overflow-y: scroll;
}

.weekly-read:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(3, 40, 29, 0.1);
}

.weekly-read h6 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    background: linear-gradient(90deg, #00806024, #00563f8f);
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(0, 86, 63, 0.12);
    font-weight: 800;
    font-size: 14px;
    position: relative;
}

.small-post {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 8px;
    border-radius: 10px;
    transition: transform 0.18s ease, background 0.18s ease;
}

.small-post:hover {
    transform: translateX(-8px);
    background: linear-gradient( 90deg, rgba(0, 128, 96, 0.03), rgba(0, 0, 0, 0.01));
}

.small-thumb {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(2, 20, 14, 0.06);
    flex-shrink: 0;
}

.small-post p {
    margin: 0;
    color: rgba(10, 10, 10, 0.9);
    font-weight: 600;
    font-size: 14px;
}

.small-post small {
    color: rgba(0, 0, 0, 0.45);
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:hover {
    transform: translateX(-5px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-grid;
    place-items: center;
    font-size: 16px;
    color: var(--white);
    background: linear-gradient(180deg, var(--green-light), var(--green-dark));
    box-shadow: 0 12px 34px rgba(0, 128, 96, 0.12);
}

.feature-title {
    font-weight: 700;
    color: var(--coffee-brown);
}

.feature-sub {
    color: rgba(0, 0, 0, 0.45);
    font-size: 13px;
}


/*--offer-card--*/

.recommended-card {
    border-radius: 14px;
    padding: 14px;
    background: linear-gradient( 180deg, rgba(255, 255, 255, 0.84), rgba(245, 243, 240, 0.86));
    box-shadow: 0 18px 44px rgba(20, 12, 8, 0.06);
    border: 1px solid rgba(75, 54, 33, 0.06);
    transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.32s;
    overflow: visible;
    position: relative;
    margin-top: 20px;
    border: 1px solid var(--green-light);
}

.recommended-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 36px 90px rgba(20, 12, 8, 0.12);
}

.recommend-media {
    position: relative;
    flex: 0 0 92px;
    width: 92px;
    height: 92px;
    border-radius: 14px;
    overflow: visible;
}

.recommend-thumb {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
    transition: transform 0.36s ease, box-shadow 0.36s ease;
    display: block;
}

.recommended-card:hover .recommend-thumb {
    transform: translateY(-12px) scale(1.03) rotate(-1deg);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
}

.recommend-badge {
    position: absolute;
    right: -6px;
    top: -8px;
    background: linear-gradient(90deg, var(--green-light), var(--green-dark));
    color: #fff;
    padding: 5px 6px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 9px;
    box-shadow: 0 8px 20px rgba(0, 128, 96, 0.12);
}

.recommend-body {
    flex: 1 1 auto;
}

.recommend-title {
    color: var(--coffee-brown);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.15;
}

.recommend-sub {
    font-size: 11px;
    margin-top: 4px;
}

.recommend-price {
    color: var(--green-dark);
    font-weight: 800;
    font-size: 13px;
    background: linear-gradient( 90deg, rgba(0, 128, 96, 0.06), rgba(75, 54, 33, 0.02));
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 128, 96, 0.06);
}

.recommend-rating .stars {
    color: #d4a373;
    letter-spacing: 2px;
    font-size: 0.95rem;
}

.btn-buy {
    background: linear-gradient(135deg, var(--green-dark), var(--green-light));
    color: var(--white);
    border: none;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-buy:hover {
    transform: translateY(-2px);
    color: white;
}

@media (max-width: 992px) {
    .recommended-card {
        flex-direction: row;
        gap: 12px;
    }
    .recommend-media {
        width: 82px;
        height: 82px;
        flex: 0 0 82px;
    }
    .recommend-thumb {
        width: 82px;
        height: 82px;
    }
}

@media (max-width: 576px) {
    .recommended-card {
        flex-direction: row;
        gap: 10px;
        padding: 12px;
    }
    .recommend-media {
        width: 72px;
        height: 72px;
        flex: 0 0 72px;
    }
    .recommend-thumb {
        width: 72px;
        height: 72px;
        transform: translateY(0);
    }
    .recommend-badge {
        right: -4px;
        top: -6px;
        padding: 5px 8px;
        font-size: 11px;
    }
    .recommend-price {
        font-size: 0.9rem;
        padding: 5px 8px;
    }
    .small-thumb {
        width: 54px;
        height: 54px;
    }
}


/*--end offer-card--*/


/*--Golden-tips-coffe--*/

.tips-section {
    margin-top: 18px;
    padding: 10px 0;
    background: transparent;
    border-radius: 8px;
}

.tips-section h6 {
    display: flex;
    align-items: center;
    color: var(--white);
    background: linear-gradient(90deg, #00806024, #00563f8f);
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 86, 63, 0.12);
    font-weight: 800;
    font-size: 14px;
    position: relative;
}

.tips-section ul {
    list-style: none;
    margin: 0;
    padding: 0 12px;
    position: relative;
}

.tips-section ul::before {
    content: "";
    position: absolute;
    right: 0px;
    top: 6px;
    bottom: 6px;
    width: 3px;
    background: linear-gradient( 180deg, rgba(0, 128, 96, 0.9), rgba(75, 54, 33, 0.18));
    border-radius: 2px;
    opacity: 0.95;
}

.tip-item {
    position: relative;
    padding: 10px 30px 10px 12px;
    margin-bottom: 12px;
    color: rgba(10, 10, 10, 0.85);
    font-size: 14px;
    line-height: 1.5;
    transition: transform 0.18s ease, background 0.18s ease;
}

.tip-item::before {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient( circle at 30% 30%, #37c067, rgba(255, 255, 255, 0.85));
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.08), 0 6px 18px rgba(0, 128, 96, 0.16);
    border: 2px solid var(--green-light);
}

.tip-item:hover {
    transform: translateX(-6px);
    color: rgba(0, 0, 0, 0.95);
}

@media (max-width: 992px) {
    .weekly-read {
        padding: 16px;
    }
    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    .small-thumb {
        width: 60px;
        height: 60px;
    }
    .recommend-thumb {
        width: 64px;
        height: 64px;
    }
    .tips-section ul::before {
        right: 14px;
    }
    .tip-item {
        padding-right: 40px;
    }
}

@media (max-width: 576px) {
    .weekly-read {
        padding: 14px;
    }
    .small-post {
        gap: 10px;
    }
    .small-thumb {
        width: 54px;
        height: 54px;
    }
    .tips-section ul::before {
        display: none;
    }
    .tip-item::before {
        right: 6px;
        transform: translateY(-50%) scale(0.9);
    }
}


/*--end-left-card--*/