/* Style for product title links */
.topPromotion_left_item_name a {
    color: inherit;          /* use parent text color */
    text-decoration: none;   /* remove underline */
    cursor: pointer;         /* keep pointer on hover */
}

/* Prevent color change on hover/visited */
.topPromotion_left_item_name a:visited,
.topPromotion_left_item_name a:hover,
.topPromotion_left_item_name a:active {
    color: inherit;          /* same color as normal text */
    text-decoration: none;   /* no underline */
}



/* Extra small devices Max-width 480px */
@media (max-width: 370px) {
/* ===== LEFT PROMOTION BOX ===== */
.topPromotion {
    display: flex;
    flex-direction: column;
    width: 95%;
    height: auto;
    margin: 10px auto 0 auto;   /* spacing above */
    /* border-radius: 15px; */
    align-items: center;

}

.topPromotion_left {
    width: 100%;
    border: none;
    padding: 0 10px 0 10px;
}
.topPromotion_left_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding:0 auto;
}
.topPromotion_left_item_img {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 380px;
    max-height: 380px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    justify-content: center;
    padding: 15px;
}
.topPromotion_left_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or cover */
    border-radius: 10px;
}
/* Product description block */
.topPromotion_left_item_mainDesc {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically centered */
    align-items: center;      /* horizontally centered */
    padding: 10px;
}

/* Title */
.topPromotion_left_item_name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align:center;
}

/* Price */
.topPromotion_left_item_price {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 15px;
    align-items: baseline;
}
.promo_price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #d00; /* red for emphasis */
    /* text-align: center; */
}
.old_price {
    font-size: 1.1rem;
    color: #888;
    text-decoration: line-through;
    /* text-align: center; */
}
.promo_price,
.old_price {
    padding: 5px 10px;
}
/* Description */
.topPromotion_left_item_desc {
    line-height: 1.6;
    font-size: 1em;
    padding: 0 10px 0 10px;
    color: #444;
    text-align: justify;
    margin-bottom: 15px;
    /* Limit to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Button */
.topPromotion_left_item_mainDesc button {
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
/* ===== RIGHT PROMOTION BOX ===== */
.topPromotion_right {
    width: 100%;
    padding: 0;
    border: none;
}
.topPromotion_right_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;

}

/* Announcement + News sections */
.topPromotion_right_announcement,
.topPromotion_right_news {
    width: 100%;
    padding: 0 10px;
    border: none;
    margin-top: 15px;
    display: flex;
    flex-direction: column;

}

/* Individual cards */
.announcement, .news {
    /* border: 1px solid #ccc; */
    border-bottom: 1px solid #ccc;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    flex: 1;                  /* equal growth */
    min-height: 100px;        /* consistent minimum height */
    margin: 10px 0 10px 0;
}

/* Image sizing */
.announcement img, .news img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0;
}

/* Text block */
.announ_desc, .news_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

/* Title link */
.announcement a, .news a {
    font-weight: bold;
    text-decoration: none;
    color: #0078D7;
    margin-bottom: 5px;
}

/* Description text */
.announcement p, .news p {
    font-size: 0.9em;
    color: #333;
    margin: 0;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;    /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Divider line between announcement and news */
.topPromotion_right_announcement, button{
    align-self: center;
}
.topPromotion_right_news button{
    align-self: center;
}

/* ===========================================================
   READ MORE BUTTON
   =========================================================== */
.read-more {
    Width: 60%;
    padding: 8px 16px;
    background: linear-gradient(135deg, #0078D7, #005fa3);
    color: #fff;
    font-size: 0.95em;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    cursor: pointer;

    display: inline-flex;        /* flex for text + icon */
    align-items: center;
    
    justify-content: center;
    gap: 8px;                    /* spacing between text and icon */

    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}
.read-more i {
    font-size: 1em;              /* icon size */
}
.read-more:hover {
    background: linear-gradient(135deg, #005fa3, #004080);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}





}

@media (min-width: 371px) and (max-width: 490px) {
/* ===== LEFT PROMOTION BOX ===== */
.topPromotion {
    display: flex;
    flex-direction: column;
    width: 95%;
    height: auto;
    margin: 10px auto 0 auto;   /* spacing above */
    /* border-radius: 15px; */

}

.topPromotion_left {
    width: 100%;
    border: none;
    padding: 0 10px 0 10px;
}
.topPromotion_left_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding:0 auto;
}
.topPromotion_left_item_img {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 480px;
    max-height: 480px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    justify-content: center;
    padding: 20px;
}
.topPromotion_left_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or cover */
    border-radius: 10px;
}
/* Product description block */
.topPromotion_left_item_mainDesc {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically centered */
    align-items: center;      /* horizontally centered */
    padding: 10px 20px 10px 20px;
}

/* Title */
.topPromotion_left_item_name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align:center;
}

/* Price */
.topPromotion_left_item_price {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 15px;
    align-items: baseline;
}
.promo_price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d00; /* red for emphasis */
    /* text-align: center; */
}
.old_price {
    font-size: 1.3rem;
    color: #888;
    text-decoration: line-through;
    /* text-align: center; */
}
.promo_price,
.old_price {
    padding: 5px 10px;
}
/* Description */
.topPromotion_left_item_desc {
    line-height: 1.6;
    font-size: 1.2em;
    padding: 0 10px 0 10px;
    color: #444;
    text-align: justify;
    margin-bottom: 15px;
    /* Limit to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Button */
.topPromotion_left_item_mainDesc button {
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
/* ===== RIGHT PROMOTION BOX ===== */
.topPromotion_right {
    width: 100%;
    padding: 0;
    border: none;
}
.topPromotion_right_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;

}

/* Announcement + News sections */
.topPromotion_right_announcement,
.topPromotion_right_news {
    width: 100%;
    padding: 0 10px;
    border: none;
    margin-top: 15px;
    display: flex;
    flex-direction: column;

}

/* Individual cards */
.announcement, .news {
    /* border: 1px solid #ccc; */
    border-bottom: 1px solid #ccc;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    flex: 1;                  /* equal growth */
    min-height: 100px;        /* consistent minimum height */
    margin: 10px 0 10px 0;
}

/* Image sizing */
.announcement img, .news img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0;
}

/* Text block */
.announ_desc, .news_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

/* Title link */
.announcement a, .news a {
    font-weight: bold;
    text-decoration: none;
    color: #0078D7;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

/* Description text */
.announcement p, .news p {
    font-size: 1.1em;
    color: #333;
    margin: 0;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;    /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Divider line between announcement and news */
.topPromotion_right_announcement, button{
    align-self: center;
}
.topPromotion_right_news button{
    align-self: center;
}

/* ===========================================================
   READ MORE BUTTON
   =========================================================== */
.read-more {
    Width: 50%;
    padding: 8px 16px;
    background: linear-gradient(135deg, #0078D7, #005fa3);
    color: #fff;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    cursor: pointer;

    display: inline-flex;        /* flex for text + icon */
    align-items: center;
    
    justify-content: center;
    gap: 8px;                    /* spacing between text and icon */

    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}
.read-more i {
    font-size: 1em;              /* icon size */
}
.read-more:hover {
    background: linear-gradient(135deg, #005fa3, #004080);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}




}

@media (min-width: 491px) and (max-width: 800px) {
/* ===== LEFT PROMOTION BOX ===== */
.topPromotion {
    display: flex;
    flex-direction: column;
    width: 95%;
    height: auto;
    margin: 10px auto 0 auto;   /* spacing above */
    /* border-radius: 15px; */

}

.topPromotion_left {
    width: 100%;
    border: none;
    padding: 0 10px 0 10px;
}
.topPromotion_left_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding:0 auto;
}
.topPromotion_left_item_img {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 790px;
    max-height: 790px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    justify-content: center;
    padding: 20px;
}
.topPromotion_left_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or cover */
    border-radius: 10px;
}
/* Product description block */
.topPromotion_left_item_mainDesc {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically centered */
    align-items: center;      /* horizontally centered */
    padding: 10px 20px 10px 20px;
}

/* Title */
.topPromotion_left_item_name {
    font-size: 2.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align:center;
}

/* Price */
.topPromotion_left_item_price {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 15px;
    align-items: baseline;
}
.promo_price {
    font-size: 2rem;
    font-weight: bold;
    color: #d00; /* red for emphasis */
    /* text-align: center; */
}
.old_price {
    font-size: 1.8rem;
    color: #888;
    text-decoration: line-through;
    /* text-align: center; */
}
.promo_price,
.old_price {
    padding: 5px 10px;
}
/* Description */
.topPromotion_left_item_desc {
    line-height: 1.6;
    font-size: 1.8em;
    padding: 0 10px 0 10px;
    color: #444;
    text-align: justify;
    margin-bottom: 15px;
    /* Limit to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Button */
.topPromotion_left_item_mainDesc button {
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
/* ===== RIGHT PROMOTION BOX ===== */
.topPromotion_right {
    width: 100%;
    padding: 0;
    border: none;
}
.topPromotion_right_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;

}

/* Announcement + News sections */
.topPromotion_right_announcement,
.topPromotion_right_news {
    width: 100%;
    padding: 0 15px;
    border: none;
    margin-top: 15px;
    display: flex;
    flex-direction: column;

}

/* Individual cards */
.announcement, .news {
    /* border: 1px solid #ccc; */
    border-bottom: 1px solid #ccc;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    flex: 1;                  /* equal growth */
    min-height: 100px;        /* consistent minimum height */
    margin: 10px 0 10px 0;
}

/* Image sizing */
.announcement img, .news img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0;
}

/* Text block */
.announ_desc, .news_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

/* Title link */
.announcement a, .news a {
    font-weight: bold;
    text-decoration: none;
    color: #0078D7;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

/* Description text */
.announcement p, .news p {
    font-size: 1.3em;
    color: #333;
    margin: 0;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;    /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Divider line between announcement and news */
.topPromotion_right_announcement, button{
    align-self: center;
}
.topPromotion_right_news button{
    align-self: center;
}

/* ===========================================================
   READ MORE BUTTON
   =========================================================== */
.read-more {
    Width: 50%;
    padding: 8px 16px;
    background: linear-gradient(135deg, #0078D7, #005fa3);
    color: #fff;
    font-size: 1.3em;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    cursor: pointer;

    display: inline-flex;        /* flex for text + icon */
    align-items: center;
    
    justify-content: center;
    gap: 8px;                    /* spacing between text and icon */

    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}
.read-more i {
    font-size: 1em;              /* icon size */
}
.read-more:hover {
    background: linear-gradient(135deg, #005fa3, #004080);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


}

@media (min-width: 801px) and (max-width: 1025px) {
/* ===== LEFT PROMOTION BOX ===== */
.topPromotion {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: auto;
    margin: 10px auto 0 auto;   /* spacing above */
    /* border-radius: 15px; */

}

.topPromotion_left {
    width: 100%;
    border: none;
    padding: 0 10px 0 10px;
    display: flex;
    flex-direction: column;
}
.topPromotion_left_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding:0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.topPromotion_left_item_img {
    width: 80%;
    aspect-ratio: 1 / 1;
    max-width: 1000px;
    max-height: 1000px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    justify-content: center;
    padding: 20px;
}
.topPromotion_left_item_img img {
    width: 80%;
    /* height: 80%; */
    object-fit: contain; /* or cover */
    border-radius: 10px;
}
/* Product description block */
.topPromotion_left_item_mainDesc {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically centered */
    align-items: center;      /* horizontally centered */
    padding: 10px 20px 10px 20px;
}

/* Title */
.topPromotion_left_item_name {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align:center;
}

/* Price */
.topPromotion_left_item_price {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 15px;
    align-items: baseline;
}
.promo_price {
    font-size: 2.3rem;
    font-weight: bold;
    color: #d00; /* red for emphasis */
    /* text-align: center; */
}
.old_price {
    font-size: 2rem;
    color: #888;
    text-decoration: line-through;
    /* text-align: center; */
}
.promo_price,
.old_price {
    padding: 5px 10px;
}
/* Description */
.topPromotion_left_item_desc {
    line-height: 1.6;
    font-size: 1.8em;
    padding: 0 10px 0 10px;
    color: #444;
    text-align: justify;
    margin-bottom: 15px;
    /* Limit to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Button */
.topPromotion_left_item_mainDesc button {
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    font-size: 1.8em;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
/* ===== RIGHT PROMOTION BOX ===== */
.topPromotion_right {
    width: 100%;
    padding: 0;
    border: none;
}
.topPromotion_right_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;

}

/* Announcement + News sections */
.topPromotion_right_announcement,
.topPromotion_right_news {
    width: 100%;
    padding: 0 15px;
    border: none;
    margin-top: 15px;
    display: flex;
    flex-direction: column;

}

/* Individual cards */
.announcement, .news {
    /* border: 1px solid #ccc; */
    border-bottom: 1px solid #ccc;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 25px;
    flex: 1;                  /* equal growth */
    min-height: 100px;        /* consistent minimum height */
    margin: 10px 0 10px 0;
}

/* Image sizing */
.announcement img, .news img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0;
}

/* Text block */
.announ_desc, .news_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

/* Title link */
.announcement a, .news a {
    font-weight: bold;
    text-decoration: none;
    color: #0078D7;
    margin-bottom: 5px;
    font-size: 1.8rem;
}

/* Description text */
.announcement p, .news p {
    font-size: 1.4em;
    color: #333;
    margin: 0;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;    /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Divider line between announcement and news */
.topPromotion_right_announcement, button{
    align-self: center;
}
.topPromotion_right_news button{
    align-self: center;
}

/* ===========================================================
   READ MORE BUTTON
   =========================================================== */
.read-more {
    Width: 50%;
    padding: 8px 16px;
    background: linear-gradient(135deg, #0078D7, #005fa3);
    color: #fff;
    font-size: 1.4em;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    cursor: pointer;

    display: inline-flex;        /* flex for text + icon */
    align-items: center;
    
    justify-content: center;
    gap: 8px;                    /* spacing between text and icon */

    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}
.read-more i {
    font-size: 1em;              /* icon size */
}
.read-more:hover {
    background: linear-gradient(135deg, #005fa3, #004080);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


}

@media (min-width: 1026px) {
/* ===========================================================
   TOP PROMOTION CONTAINER
   =========================================================== */
.topPromotion {
    display: flex;
    flex-direction: row;
    width: 95%;
    margin: 50px auto 0 auto;   /* spacing above */
    padding: 15px;              /* inner spacing */
    border-radius: 15px;
    /* background-color: #fdf5e6; */ /* optional background */
}

/* ===========================================================
   LEFT PROMOTION BOX
   =========================================================== */
.topPromotion_left {
    width: 50%;
    margin: 0 auto;
    border-right: 2px solid #ccc; /* divider line */
    padding-right: 10px;
}

.topPromotion_left_item {
    height: 400px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/* Product image */
.topPromotion_left_item_img {
    width: 50%;
    aspect-ratio: 1 / 1;
    max-width: 380px;
    max-height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.topPromotion_left_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or cover */
    border-radius: 10px;
}

/* Product description block */
.topPromotion_left_item_mainDesc {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically centered */
    align-items: center;      /* horizontally centered */
    padding: 10px;
    padding-left: 15px;
}

/* Title */
.topPromotion_left_item_name {
    font-size: 1.6em;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

/* Price */
.topPromotion_left_item_price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}
.promo_price {
    font-size: 2em;
    font-weight: bold;
    color: #d00; /* red for emphasis */
    text-align: center;
    margin-bottom: 10px;
}
.old_price {
    font-size: 1.4em;
    color: #888;
    text-decoration: line-through;
    text-align: center;
}

/* Description */
.topPromotion_left_item_desc {
    line-height: 1.6;
    font-size: 1.2rem;
    color: #444;
    text-align: left;
    margin-bottom: 15px;

    /* Limit to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Button */
.topPromotion_left_item_mainDesc button {
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.topPromotion_left_item_mainDesc button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ===========================================================
   RIGHT PROMOTION BOX
   =========================================================== */
.topPromotion_right {
    width: 50%;
    margin: 0 auto;
    padding-left: 10px;
}

.topPromotion_right_item {
    height: 400px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;   /* center halves */
    align-items: stretch;
    padding: 10px;
}

/* Announcement + News sections */
.topPromotion_right_announcement,
.topPromotion_right_news {
    flex: 1;                   /* each takes 50% */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

/* Individual cards */
.announcement, .news {
    border-bottom: 1px solid #ccc;
    padding: 8px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    flex: 1;                  /* equal growth */
    min-height: 100px;        /* consistent minimum height */
    margin-bottom: 10px;
}

/* Image sizing */
.announcement img, .news img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0;
}

/* Text block */
.announ_desc, .news_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

/* Title link */
.announcement a, .news a {
    font-weight: bold;
    text-decoration: none;
    color: #0078D7;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

/* Description text */
.announcement p, .news p {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;    /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Divider line between announcement and news */
.topPromotion_right_announcement {
    border-right: 2px solid #ccc;
    padding-right: 10px;
}
.topPromotion_right_news {
    padding-left: 10px;
}

/* ===========================================================
   READ MORE BUTTON
   =========================================================== */
.read-more {
    padding: 8px 16px;
    background: linear-gradient(135deg, #0078D7, #005fa3);
    color: #fff;
    font-size: 0.95em;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    cursor: pointer;

    display: inline-flex;        /* flex for text + icon */
    align-items: center;
    justify-content: center;
    gap: 8px;                    /* spacing between text and icon */

    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}
.read-more i {
    font-size: 1em;              /* icon size */
}
.read-more:hover {
    background: linear-gradient(135deg, #005fa3, #004080);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


}




