/* ============================
   ECONOMY SECTION

/* Content wrapper */
.economy-content {
    max-width: 1280px;
    margin: 0 auto;
}
.economy-section {
    background-image: url("../images/home/arthatantrasection/arthatantrabg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  padding: 0.8rem 1rem;
    color: #fff;
}


/* Header text */
.economy-content h2 {
    text-align: center;
    font-weight: 700;
}

.economy-content p {
    font-size: 20px; /* Slightly bigger */
    text-align: center;
    margin-bottom: 40px;
}

/* ============================
   FEATURE + SIDEBAR LAYOUT
=============================== */
.economy-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
    width: 100%;
}
@media (max-width: 768px) {
.economy-layout {

    grid-template-columns: 1fr;
    
}
}

/* Featured Post */
.economy-featured {
width: 100%;
display: flex;
flex-direction: column;
gap: 20px;
}
.economy-featured a {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
}
.economy-featured img {
    width: 100%;
    height: 400px; /* Taller for emphasis */
    object-fit: cover;
    border-radius: 4px;
}
.economy-featured h3 {
    margin-top: 12px;
    font-size: 26px; /* Bigger font */
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

/* Sidebar Items */
.economy-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}
@media (max-width: 768px) {
.economy-sidebar {
display: none;
}
}

.economy-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #222;
    height: 280px; /* Uniform height */
}

.economy-item a {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.economy-item img {
    width: 100%;
    height: 140px; /* Taller image */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.economy-item h4 {
    font-size: 20px; /* Bigger font */
    font-weight: 500;
    padding: 15px 10px 4px 10px;
    line-height: 1.3;
        color: #333;
}

.economy-item p {
    font-size: 18px; /* Bigger font */
    padding: 0 10px 10px 10px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    color: #555;
}



.economy-item:hover h4 {
    color: #1e73be;
}

/* ============================
   GRID NEWS BELOW
=============================== */
.economy-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.economy-news-item {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.economy-news-item a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.economy-news-item img {
    width: 100%;
    height: 160px; /* Slightly taller */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.economy-news-item h4 {
    padding: 10px 12px 4px 12px;
    font-size: 20px; /* Bigger font */
    font-weight: 500;
    line-height: 1.4;
         color: #333;
}

.economy-news-item p {
    font-size: 18px; /* Bigger font */
    padding: 0 12px 10px 12px;
    line-height: 1.4;
    color: #555;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}



.economy-news-item:hover h4 {
    color: #1e73be;
}
