* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    font-weight: 300;
    font-family: 'Inter_24pt-Regular';
}

.energy-news-container-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.energy-news-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}




.energy-news-header-wrapper h1 {
      font-size: 48px;
      font-weight: 300;
      color: #1a237e;
      margin-bottom: 30px;
      letter-spacing: -1px;
      line-height: 1.2;
      opacity: 0;
      animation: fadeIn 0.8s ease-out 0.4s forwards;
    }

 

    .energy-news-header-wrapper h1 strong {
      font-weight: 500;
    }

.energy-news-releases-btn-primary {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.energy-news-releases-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.energy-news-grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.energy-news-main-story-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.energy-news-main-story-image-container {
    
    height: auto;
    overflow: hidden;
}

.energy-news-main-story-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.energy-news-main-story-image-container:hover img {
    transform: scale(1.08);
}

.energy-news-main-story-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 30px 30px;
}
.energy-news-main-story-content-overlay-t {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent);
    color: white;
    padding: 40px 30px 30px;
}

.energy-news-main-story-title-text {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 12px;
    position: relative;
    display: inline;
    background: linear-gradient(135deg, #f97316, #ea580c);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.4s ease;
    line-height: 1.4;
}

.energy-news-main-story-title-text:hover {
    background-size: 100% 2px;
}

.energy-news-story-date-main {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.energy-news-side-stories-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.energy-news-side-story-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.energy-news-side-story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.energy-news-side-story-image-wrapper {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.energy-news-side-story-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.energy-news-side-story-image-wrapper:hover img {
    transform: scale(1.1);
}

.energy-news-side-story-content-block {
    padding: 20px;
}

.energy-news-side-story-title-heading {
    font-size: 1.1rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 8px;
    position: relative;
    display: inline;
    background: linear-gradient(135deg, #f97316, #ea580c);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.4s ease;
    line-height: 1.4;
}

.energy-news-side-story-title-heading:hover {
    background-size: 100% 2px;
}

.energy-news-side-story-date-text {
    color: #6b7280;
    font-size: 0.85rem;
}

.energy-news-bottom-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.energy-news-bottom-story-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.energy-news-bottom-story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.energy-news-bottom-story-image-holder {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.energy-news-bottom-story-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.energy-news-bottom-story-image-holder:hover img {
    transform: scale(1.08);
}

.energy-news-bottom-story-content-area {
    padding: 25px;
}

.energy-news-tag-badge-orange {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.energy-news-bottom-story-title-main {
    font-size: 1.2rem;
    font-weight: 500;
    color: #546e7a;
    margin-bottom: 12px;
    line-height: 1.4;
    position: relative;
    display: inline;
    background-image: linear-gradient(#f97316, #f97316);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.4s ease;
}

.energy-news-bottom-story-title-main-c {
    font-size: 18px;
    font-weight: 400;
    color: #546e7a;
    margin-bottom: 12px;
    line-height: 1.8;
    position: relative;
    display: inline;
    background-image: linear-gradient(#f97316, #f97316);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.4s ease;
     
}

.energy-news-bottom-story-title-main:hover {
    background-size: 100% 2px;
}

.energy-news-bottom-story-title-main-c:hover {
    background-size: 100% 2px;
}

.energy-news-bottom-story-excerpt-text {
    color: #4b5563;
    margin-bottom: 15px;
    line-height: 1.5;
}

.energy-news-bottom-story-date-info {
    color: #6b7280;
    font-size: 0.9rem;
}

.energy-news-clickable-link-element {
    text-decoration: none;
    color: inherit;
    display: block;
}

.energy-news-clickable-link-element:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .energy-news-grid-layout {
        grid-template-columns: 1fr;
    }

    .energy-news-header-wrapper {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .energy-news-header-wrapper h1 {
        font-size: 2rem;
    }

    .energy-news-bottom-stories-grid {
        grid-template-columns: 1fr;
    }
}

.news-release-right-align {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
}