﻿.update-wrapper {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    box-shadow: rgb(0 0 0 / 25%) 0px 54px 55px, rgb(0 0 0 / 12%) 0px -12px 30px, rgb(0 0 0 / 12%) 0px 4px 6px, rgb(0 0 0 / 17%) 0px 12px 13px, rgb(0 0 0 / 9%) 0px -3px 5px;
    padding: 40px 30px;
    margin: 40px auto;
    max-width: 1200px;
}

/* Heading */
.update-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1c7c54;
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
}

    .update-heading::after {
        content: "";
        display: block;
        width: 100px;
        height: 3px;
        background: #ffd700;
        margin: 12px auto 0;
        border-radius: 2px;
        transition: width 0.3s ease;
    }

    .update-heading:hover::after {
        width: 180px;
    }

/* Card style for each update */
.update-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

    .update-card:hover {
        background: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    }

.update-title {
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

.update-date {
    font-size: 14px;
    color: #888;
    margin-left: 8px;
}

.update-summary {
    font-size: 15px;
    color: #666;
    margin-top: 5px;
}

/* Download button */
.btn-download {
    border: none;
    background: #1c7c54;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

    .btn-download i {
        margin-right: 6px;
        font-size: 16px;
    }

    .btn-download:hover {
        background: #145c3f;
        color: #fff;
        transform: translateY(-2px);
    }
