/* Blog Page Structure */
.blog-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #083D39 0%, #0E5E58 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    z-index: 0;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -100px;
}

.blog-hero .container {
    position: relative;
    z-index: 1;
}

.blog-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blog-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-container {
    padding: 60px 0;
    background: #fff;
    min-height: 500px;
}

.blog-container h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0E5E58;
    margin-bottom: 40px;
    text-align: left;
    position: relative;
    padding-bottom: 15px;
}

.blog-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #fcb414;
    border-radius: 2px;
}

.blog-container h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0E5E58;
    margin-bottom: 40px;
    text-align: left;
    position: relative;
    padding-bottom: 15px;
}

.blog-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #fcb414;
    border-radius: 2px;
}

/* Blog Items */
.blog-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    height: 100%;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 94, 88, 0.1);
    border-color: #0E5E58;
}

.blog-item .img-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.blog-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item:hover img {
    transform: scale(1.1);
}

.blog-item .date-box {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fcb414;
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(252, 180, 20, 0.3);
}

.blog-item .date-box h6 {
    margin: 0;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}

.blog-item .content-wrap {
    padding: 25px;
}

.blog-item .title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0E5E58;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.2rem;
}

.blog-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 4.5rem;
}

.blog-item .readmore {
    display: inline-flex;
    align-items: center;
    color: #0E5E58;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-item .readmore:hover {
    color: #fcb414;
    gap: 12px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    padding: 0;
    list-style: none;
}

.pagination .page-item .page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    border: 1px solid #eee;
    color: #0E5E58;
    font-weight: 700;
    transition: all 0.3s ease;
    background: #fff;
}

.pagination .page-item.active .page-link {
    background: #0E5E58;
    color: #fff;
    border-color: #0E5E58;
    box-shadow: 0 5px 15px rgba(14, 94, 88, 0.2);
}

.pagination .page-item .page-link:hover:not(.active) {
    background: #f8f9fa;
    border-color: #0E5E58;
}