body {
    /* display: flex; */
    min-height: 100vh;
    background-color: #e1e0de;
    flex-direction: column;
    justify-content: space-between;
    align-content: space-between;
}

footer {
    margin-top: auto;
}

.page-footer {
    padding-top: 20px;
    color: #fff;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}

.hero {
    background: linear-gradient(90deg, #0c0a08, #a88844, #d81b1b);
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-weight: bold;
    font-size: 3rem;
}

.hero p {
    font-size: 1.3rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 30px 0 20px;
}

.featured-card {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    min-height: 300px;
}

.image-col {
    position: relative;
    padding: 0 !important;
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.featured-meta {
    font-size: 0.9rem;
    color: #757575;
    margin-top: 15px;
}

.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ef5350;
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: lowercase;
    font-weight: bold;
}




/*********** News Card ***********/
.news-card {
    border-radius: 12px 12px 12px 12px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.chip {
    background-color: #282828;
    color: #e1e0de;
    font-weight: 400;
}

.card-title {
    font-weight: 500;
    color: #0c0a08;
}

.author-date {
    font-size: 0.9em;
    color: #777;
    margin-top: 15px;
}

/* Medium screens (tablets) */
@media (min-width: 601px) and (max-width: 1080px) {
    .card-image .img {
        height: 200px;
        object-fit: cover;
    }
}

/* Laptops */
@media (min-width: 1080px) and (max-width: 1440px) {
    .card-image .img {
        height: 200px;
        object-fit: cover;
    }
}

/* Desktops */
@media (min-width: 1441px) {
    .card-image .img {
        height: 200px;
        object-fit: cover;
    }
}

/* Mobile */
/* Small devices (large phones) */
@media (min-width: 481px) and (max-width: 767px) {
    .card-image .img {
        border-radius: 2px 0 0 2px;
        max-width: 100%;
        width: auto;
        height: 200px;
        object-fit: cover;
    }

    .card.horizontal .card-image img {
        border-radius: 0;
        max-width: 100%;
        width: auto;
        height: 400px;
        object-fit: cover;
    }
}

@media (max-width: 480px) {}

.slider .slides {
    background-color: #e1e0de;
    margin: 0;
    height: 400px;
}

.slider .indicators .indicator-item.active {
    background-color: #282828;
}

.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ef5350;
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: capitalize;
    font-weight: bold;
}

.card-content {
    padding: 20px;
}

.card-content h5 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #555;
}

.card-meta i {
    font-size: 16px;
    vertical-align: middle;
    margin-right: 5px;
    color: #757575;
}



/*********** Details Page ***********/
header {
    position: relative;
    height: 380px;
    overflow: hidden;
}

header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

header .header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
}

header .chip {
    background-color: #282828;
    color: #e1e0de;
    font-weight: 400;
    margin-bottom: 10px;
}

header h4 {
    font-weight: 600;
    margin: 10px 0;
}

.article-container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 24px;
}

.article-meta {
    color: #000000;
    font-size: 0.9em;
    margin-bottom: 25px;
    display: flex;
    gap: 1rem;
    animation: fadeIn 1s ease-out 0.5s both;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.247);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.article-meta i {
    vertical-align: middle;
    margin-right: 6px;
}

p {
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
}

.article-img-inline {
    width: 100%;
    border-radius: 10px;
    margin: 25px 0;
}



/*********** Login Page ***********/
.card {
    border-radius: 12px;
}

.input-field label {
    color: #ccc;
}

.input-field input[type=email]:focus+label,
.input-field input[type=password]:focus+label {
    color: #ff7a1a;
}

.input-field input[type=email]:focus,
.input-field input[type=password]:focus {
    border-bottom: 1px solid #ff7a1a;
    box-shadow: 0 1px 0 0 #ff7a1a;
}

.btn-orange {
    background-color: #ff7a1a;
}

.btn-orange:hover {
    background-color: #e65f00;
}


/*********** Magazine ***********/
.magazine-card {
    position: relative;
    max-width: 300px;
    max-height: 500px;
    margin: 10px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.magazine-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.magazine-card .image {
    border-radius: 12px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.overlay {
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.9);
    color: #f1f1f1;
    width: 100%;
    transition: .5s ease;
    opacity: 0;
    color: white;
    font-size: 15px;
    padding: 10px;
    text-align: left;
    border-radius: 12px;
}

.magazine-card:hover .overlay {
    opacity: 1;
}

/*********** Profile ***********/
.profile-card {
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

.edit-btn {
    float: right;
    margin-top: -10px;
}

.info-label {
    font-weight: 600;
    color: #555;
}

.info-value {
    margin-bottom: 10px;
}