* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Poppins", sans-serif;
}

/*  */

.subscriber {
    background-color: #fff;
    border-radius: 20px;
    padding: 5px 15px;
}
.subscriber {
    color: #c02d31 !important;
}
.top-header {
    /* background-color: #c02d31; */
    background-color: #c02d31;
    color: #fff;
    padding: 10px 8rem;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.top-header .logo {
    flex-grow: 1;
}
.top-header .logo img {
    width: 150px;
}
.top-header .user-links {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}
.top-header .user-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
}

.top-header .user-links a:hover {
    color: #f0e5c9;
}
@media (max-width: 1347px) {
    .top-header {
        padding: 10px;
        flex-direction: column;
        text-align: center;
    }
    .top-header .user-links {
        justify-content: center;
    }
    .top-header .user-links a {
        margin: 0.5rem 0;
    }
}
@media (min-width: 1347px) {
    .top-header {
        padding: 10px 8rem;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 1rem 8rem;
    border-bottom: 2px solid #eee;
    top: 0;
    z-index: 1000;
    position: sticky;
}
/* .navbar .logo img {
    width: 100px;
} */

.navbar .logo img {
    /* width: 100px; */
    width: 200px;
    vertical-align: middle;
    display: inline-block;
    height: 100%;
}

.burger-menu {
    display: none;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}
.burger-menu div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    transition: box-shadow 0.3s ease-in-out;
}
.nav-links.active {
    display: flex;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.nav-links li {
    display: inline-block;
}
.nav-links a {
    color: #2f4b3c;
    text-decoration: none;
    font-size: 16px;
}
.nav-links a:hover {
    color: #c02d31;
}
.nav-links a.active {
    font-weight: bold;
    color: #c02d31;
}
.close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 34px;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}
@media (max-width: 1347px) {
    .navbar {
        padding: 1rem;
    }
    .burger-menu {
        display: block;
    }
    .nav-links {
        display: none;
        width: 80%;
        flex-direction: column;
        padding-top: 20px;
        padding-left: 30px;
        position: absolute;
        top: 0;
        left: 0;
        background-color: white;
        height: 100vh;
        gap: 2rem;
    }
    .nav-links.active {
        display: flex;
    }
    .cta {
        display: none;
    }
    .consultation-button {
        width: 100%;
        text-align: center;
    }
    .close-btn {
        display: block;
    }
}
@media (min-width: 1347px) {
    .nav-links {
        display: flex;
        position: static;
        width: auto;
        gap: 1.5rem;
    }
    .burger-menu {
        display: none;
    }
}

/* close navbar */

.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    color: #fff;
    margin: 30px 120px;
    padding: 0 60px;
}
@media (max-width: 1410px) {
    .hero {
        margin: 30px 30px;
        padding: 0 20px;
    }
}
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2rem !important;
    }
    .hero p {
        font-size: 1rem !important;
    }
    .hero {
        padding: 0 20px;
    }
    .hero-content {
        padding-bottom: 30px !important;
    }
}
.hero-image {
    position: absolute;
    border-radius: 20px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}
.hero-content {
    position: relative;
    max-width: 800px;
    z-index: 1;
    padding-bottom: 60px;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}
.hero .btn {
    background-color: #c02d31;
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}
.hero .btn:hover {
    background-color: #c02d31;
}
/* Swiper Styles */
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-image {
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* Hero Content */
.hero-content {
    position: relative;
    max-width: 800px;
    z-index: 1;
    padding-bottom: 60px;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}
.hero .btn {
    background-color: #c02d31;
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}
.hero .btn:hover {
    background-color: #c02d31;
}

/* CLOSE HERO */

.category {
    margin: 20px 0 0 0;
    background-color: #fff;
    text-align: center;
    padding: 15px 0 0 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    justify-content: center;
    border-bottom: none;
    position: relative;
}
.category::-webkit-scrollbar {
    display: none;
}
.category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    box-shadow: none;
}
.category ul li {
    margin: 0 5px;
    text-align: center;
}
.category ul li a {
    text-decoration: none;
    font-size: 1rem;
    color: rgb(44, 62, 80);
    font-weight: bold;
    padding: 8px 15px;
    border: 1px solid #ddd;
    background-color: #fcfcfd;
    border-radius: 10px;
    transition:
        background-color 0.3s,
        color 0.3s;
    display: inline-block;
    white-space: nowrap;
    width: auto;
    min-width: 100px;
    box-sizing: border-box;
}
.category ul li a:hover,
.category ul li a:focus,
.category ul li a:active {
    background-color: #c02d31;
    color: #fff;
}
.category ul li a.active {
    background-color: #c02d31;
    color: #fff;
    border-color: #c02d31;
}

.category-info {
    margin: 20px 0 40px 0;
    background-color: #fff;
    text-align: center;
    /* padding: 15px 0 0 0; */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    justify-content: center;
    border-bottom: none;
    position: relative;
}
.category-info::-webkit-scrollbar {
    display: none;
}
.category-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    box-shadow: none;
}
.category-info ul li {
    margin: 0 5px;
    text-align: center;
}
.category-info ul li a {
    text-decoration: none;
    font-size: 1rem;
    color: rgb(44, 62, 80);
    font-weight: bold;
    padding: 8px 15px;
    border: 1px solid #ddd;
    background-color: #fcfcfd;
    border-radius: 10px;
    transition:
        background-color 0.3s,
        color 0.3s;
    display: inline-block;
    white-space: nowrap;
    width: auto;
    min-width: 100px;
    box-sizing: border-box;
}
.category-info ul li a:hover,
.category-info ul li a:focus,
.category-info ul li a:active {
    background-color: #c02d31;
    color: #fff;
}
.category-info ul li a.active {
    background-color: #c02d31;
    color: #fff;
    border-color: #c02d31;
}
@media screen and (max-width: 768px) {
    .category {
        margin: 20px;
    }

    .category ul {
        justify-content: flex-start;
    }
    .category ul li {
        margin: 0 5px;
        width: auto;
        white-space: nowrap;
    }
    .category ul li a {
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    .category-info {
        margin: 20px 0;
    }
    .category-info ul {
        justify-content: flex-start;
    }
    .category-info ul li {
        margin: 0 5px;
        width: auto;
        white-space: nowrap;
    }
    .category-info ul li a {
        font-size: 0.9rem;
        padding: 6px 10px;
    }
}
.container-login {
    background-color: white;
    padding: 2rem;
    width: 600px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-container {
    margin: 0 auto;
}
h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #333;
}
label {
    display: block;
    font-size: 1rem;
    color: #555;
    text-align: left;
}
input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 15px;
    font-size: 1rem;
}
input:focus {
    border-color: #c02d31;
}
form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
button.btn {
    width: 30%;
    padding: 5px;
    background-color: #c02d31;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    margin: 0 auto;
}
button.btn:hover {
    background-color: #c02d31;
}

.signup-link {
    margin-top: 20px;
}
.signup-link a {
    color: #c02d31;
    text-decoration: none;
}
.signup-links a {
    color: #c02d31;
    text-decoration: none;
}
.signup-link p {
    font-size: 14px;
}
.signup-links p {
    font-size: 14px;
}
.signup-link a:hover {
    color: #2f1c1c;
}
@media screen and (max-width: 768px) {
    .container-login {
        width: 90%;
        padding: 1rem;
    }
    h2 {
        font-size: 1.2rem;
    }
    button.btn {
        width: 80%;
        padding: 12px;
        font-size: 1rem;
    }
    input {
        font-size: 0.9rem;
    }
}
@media screen and (max-width: 480px) {
    .container-login {
        width: 95%;
    }
    h2 {
        font-size: 1rem;
    }
    label {
        font-size: 0.9rem;
    }
    input {
        font-size: 0.9rem;
    }
    button.btn {
        width: 100%;
        padding: 14px;
        font-size: 0.9rem;
    }
}
.container-daftar {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 70%;
    width: 100%;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
}
@media screen and (max-width: 1400px) {
    .container-daftar {
        max-width: 90%;
        padding: 1rem;
    }
}
.image-container img {
    /* margin-right: 20vh; */
    height: 500px;
    object-fit: contain;
    display: block;
}
.form-container {
    flex: 1;
}
h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}
p {
    font-size: 1rem;
    color: #555;
}
form {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
label {
    font-size: 1rem;
    color: #555;
}
input {
    padding: 12px;
    font-size: 1rem;
    border-radius: 10px;
    border: 2px solid #ddd;
}
input:focus {
    border-color: #c02d31;
}
button.btn {
    margin-top: 10px;
    padding: 10px;
    /* background-color: #c02d31; */
    background-color: #c02d31;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button.btn:hover {
    background-color: #2f1c1c;
}

@media screen and (max-width: 768px) {
    .container-daftar {
        flex-direction: column;
        width: 90%;
        padding: 1rem;
    }
    .image-container {
        padding: 1rem;
        display: none;
    }
    .form-container {
        padding: 1rem;
    }
    button.btn {
        width: 80%;
        padding: 12px;
        font-size: 1rem;
    }
    input {
        font-size: 0.9rem;
    }
}
@media screen and (max-width: 480px) {
    .container-daftar {
        width: 95%;
    }
    h2 {
        font-size: 1rem;
    }
    label {
        font-size: 0.9rem;
    }
    input {
        font-size: 0.9rem;
    }
    button.btn {
        width: 100%;
        padding: 14px;
        font-size: 0.9rem;
    }
}
.text-center {
    text-align: center;
}
@media screen and (max-width: 768px) {
    .container-daftar {
        flex-direction: column;
        width: 90%;
        padding: 1rem;
    }
    .image-container {
        padding: 1rem;
        display: none;
    }
    .form-container {
        padding: 1rem;
    }
    button.btn {
        width: 80%;
        padding: 12px;
        font-size: 1rem;
    }
    input {
        font-size: 0.9rem;
    }
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.container-search-menu {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 0 20px;
}

/* .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
} */
.read-more {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 20px;
    cursor: pointer;
}
.container-news {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
}
.left-column {
    width: 60%;
}
.right-column {
    width: 40%;
}
.left-column-info {
    width: 70%;
}
.right-column-info {
    width: 30%;
}
@media screen and (max-width: 1064px) {
    .right-column-info {
        display: none;
    }
    .left-column-info {
        width: 100%;
    }
}
.large-image {
    width: 100%;
    height: 330px;
    border-radius: 8px;
    display: block;
    margin: auto;
    max-height: 500px;
    object-fit: cover;
}
.detail-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    display: block;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 20px;
    max-height: 500px;
    object-fit: cover;
}
.creator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 20px;
    /* margin: 10px 0; */
}

.name {
    font-size: 16px;
    font-weight: 550;
    color: #333;
}

@media (max-width: 600px) {
    .creator {
        /* flex-direction: column; */
        align-items: flex-start;
    }

    .name,
    .creator-date {
        font-size: 14px;
    }

    /* .creator-date {
        margin-top: 5px;
    } */
}

.detail-text {
    margin: 10px 0;
    font-size: 18px;
}
.detail-text ol li {
    font-size: 18px;
    color: #555;
    line-height: 1.5;
    letter-spacing: 1px;
}
.detail-text strong {
    color: #555;
    line-height: 1.5;
    letter-spacing: 1px;
}
.article {
    margin-bottom: 10px;
    background-color: #fcfcfd;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}
.thumbnail {
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}
.article-content {
    display: flex;
    gap: 20px;
    align-items: center;
}
.article .date {
    display: block;
    font-size: 11px;
    color: #999;
}
.article .title {
    font-size: 14px;
    margin: 0;
}

.detail-article {
    margin: 10px 0;
    background-color: #fcfcfd;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}
.detail-article .title {
    font-size: 14px;
    margin: 0;
}

.title {
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    color: #000;
}
.detail-title {
    text-align: left;
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 1px;
}
.detail-title-side {
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0 0 0;
}
.detail-title-rside {
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0 10px 0;
}
.description {
    font-size: 12px;
    color: #555;
    line-height: 1.5;
    letter-spacing: 1px;
}
.thumbnail {
    width: 120px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
}
@media (max-width: 1064px) {
    .container-news {
        flex-direction: column;
    }
    .left-column,
    .right-column {
        width: 100%;
    }
    .large-image {
        height: 400px;
    }
    .thumbnail {
        width: 100px;
        height: 100px;
        margin: 0;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 10px 30px 30px 30px;
    }
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.tips-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}
.package-content h2 {
    font-size: 20px;
    margin-top: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #333;
    width: 100%;
    display: inline-block;
}
h2 {
    font-size: 26px;
    font-weight: bold;
}
.see-more-btn p {
    color: #d1ad4f !important;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
}
.see-more-btn a {
    text-decoration: none;
}
p {
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 1px;
}
@media (max-width: 768px) {
    p {
        font-size: 1rem;
    }
}
.news-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}
.news-item {
    display: flex;
    gap: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin: 10px 0;
}
.news-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}
.news-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-content h2 {
    text-align: left;
    margin: 0;
    font-size: 16px;
    color: #333;
}
.news-content p {
    text-align: left;
    margin: 0;
    font-size: 12px;
}
@media (max-width: 768px) {
    .news-content h2 {
        text-align: left;
        margin: 0;
        font-size: 12px;
        color: #333;
    }
    .news-content p {
        text-align: left;
        margin: 0;
        font-size: 10px;
    }
    .news-image {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 8px;
    }
    .time {
        font-size: 10px !important;
    }
}
.time {
    color: #777;
    font-size: 12px;
}
.ads-horizontal {
    margin: 20px 0;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.detail-ads-horizontal {
    margin: 20px 0;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* max-width: 600px; */
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
@media (max-width: 768px) {
    .ads-horizontal {
        height: 150px;
        max-width: 100%;
        margin: 10px 0;
    }
    .detail-ads-horizontal {
        height: 150px;
        max-width: 100%;
        margin: 30px 0;
    }
}
@media (max-width: 480px) {
    .ads-horizontal {
        height: 120px;
        margin: 10px 0;
    }
}
.container-ads {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 0 30px;
}
.detail-container-ads {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 30px 0 30px; */
}
footer {
    background-color: white;
    margin: 80px 20px 20px 20px;
    padding: 40px 0;
    color: #333;
    border-top: 1px solid #ddd;
}
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 0 20px;
    width: 100%;
}
@media (max-width: 768px) {
    .footer-container {
        margin-bottom: 0;
    }
}
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}
.footer-logo img {
    width: 200px;
}
.footer-logo h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d1ad4f;
}
.footer-logo p {
    font-size: 1rem;
    color: #6c757d;
}
.footer-column h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}
.footer-column ul {
    list-style-type: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul li a {
    color: #2c3e50;
    text-decoration: none;
}
.footer-column ul li a:hover {
    text-decoration: underline;
}
.social-links {
    display: flex;
    gap: 10px;
}
.footer__social-link {
    font-size: 1.5rem;
    transition: 0.3s;
}
.footer__social-link:hover {
    color: #d1ad4f;
}
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0px;
}
.footer-bottom p {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}
.footer-column {
    flex: 1 1 0;
    text-align: left;
}
@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }
    .footer-logo {
        margin-right: 50px;
    }
    .footer-links {
        flex-direction: row;
        width: 100%;
    }
    .footer-column {
        width: auto;
        flex: 1 1 150px;
        min-width: 100px;
    }
}
@media (max-width: 768px) {
    footer {
        margin: 40px 20px 20px 20px;
    }
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 20px 0 0 0;
        gap: 0;
    }
    .footer-logo {
        flex-direction: row;
        align-items: flex-start;
        width: 100%;
        margin-bottom: 20px;
    }
    .footer-logo img {
        width: 200px;
        margin-right: 10px;
    }
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-top: 20px;
    }
    .footer-column {
        text-align: left;
        margin-bottom: 15px;
        flex: 1 1 150px;
        min-width: 100px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 20px;
    }
    .footer-bottom p {
        color: #6c757d;
        width: 100%;
        font-size: 1rem;
        margin-bottom: 10px;
    }
}
#pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
#pagination button {
    padding: 8px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    background-color: #fcfcfd;
    color: #2c3e50;
    cursor: pointer;
    border-radius: 8px;
    transition:
        background-color 0.3s,
        color 0.3s;
}
#pagination button:hover {
    background-color: #2c3e50;
    color: #fff;
}
#pagination button:disabled {
    background-color: #ccc;
    color: #fff;
    cursor: not-allowed;
}
#page-number {
    font-size: 15px;
    color: #333;
}
.post-container {
    display: flex;
    gap: 50px;
    /* gap: 20px; */
    flex-wrap: wrap;
}
.detail-post-container {
    display: flex;
    gap: 20px;
    /* gap: 20px; */
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .post-container {
        gap: 20px;
    }
    .detail-post-container {
        gap: 20px;
    }
}
.post {
    width: 30%;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-decoration: none;
    padding: 10px;
    background-color: #fcfcfd;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}
.post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}
.post-tips {
    width: 46%;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-decoration: none;
    padding: 10px;
    background-color: #fcfcfd;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}
.post-tips img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}
.date {
    font-size: 0.9rem;
    color: #7f8c8d;
    padding: 10px;
}
.creator-date {
    font-size: 0.9rem;
    color: #7f8c8d;
    /* padding: 10px; */
}
.deskripsi-news {
    font-size: 12px;
    color: #7f8c8d;
    padding: 0 5px;
}
.container-article {
    padding: 10px 0 10px 0;
}
.post h3 {
    font-size: 14px !important;
    color: #2c3e50;
    padding: 0 5px 0 5px;
    font-weight: bold;
}
.post-tips h3 {
    font-size: 14px !important;
    color: #2c3e50;
    padding: 0 5px 0 5px;
    font-weight: bold;
}
@media (max-width: 1024px) {
    .post {
        width: 45%;
    }
    .post-tips {
        width: 45%;
    }
}
@media (max-width: 768px) {
    .post {
        width: 100%;
    }
    .post-tips {
        width: 100%;
    }
    .category-section {
        padding: 30px;
    }
    .category-sections {
        padding: 30px;
    }
}

/* Search */

.search-container {
    display: flex;
    align-items: center;
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    border: 1px solid #ddd;
    background-color: #fcfcfd;
    /* margin: 0 120px; */
}
.search-containers {
    display: flex;
    align-items: center;
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    border: 1px solid #ddd;
    background-color: #fcfcfd;
    margin-bottom: 30px;
}
.search-containerx {
    display: flex;
    align-items: center;
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    border: 1px solid #ddd;
    background-color: #fcfcfd;
    margin-top: 30px;
}
.search-container-ini {
    display: flex;
    align-items: center;
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
    border: 1px solid #ddd;
    background-color: #fcfcfd;
    margin-bottom: 30px;
}

.search-box {
    padding: 10px;
    padding-left: 35px;
    border-radius: 20px;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
    border-color: transparent;
}

.search-input {
    flex-grow: 1;
    display: flex;
}

.search-input input:focus {
    border-color: transparent;
}

.search-icon {
    position: absolute;
    left: 10px;
    color: #999;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: #fff;
}

a .article .article-text h3.title {
    color: #333;
}

/* DETAIL FOTO */

.gallery-foto {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    /* padding: 0 60px; */
}
.scroll-container {
    display: flex;
    gap: 10px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    position: relative;
    flex-wrap: nowrap;
}
.scroll-container::-webkit-scrollbar {
    display: none;
}
.scroll-container {
    scrollbar-width: none;
}
.stat-gallery {
    padding: 7px;
    text-align: center;
    background-color: #fcfcfd;
    flex: 0 0 auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 140px;
}
.stat-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
@media (max-width: 1024px) {
    .stat-gallery {
        width: 30%;
    }
}
@media (max-width: 768px) {
    .stat-gallery {
        width: 65%;
    }
    .scroll-buttons button {
        padding: 12px;
    }
}
@media (max-width: 480px) {
    /* .gallery-foto {
        padding: 10px;
        margin: 0;
    } */
    .stat-gallery {
        width: 80%;
    }
    .scroll-buttons button {
        padding: 10px;
        font-size: 18px;
    }
}
.alert-danger {
    color: red;
    font-size: 14px;
    border: 1px solid red;
    padding: 10px;
    background-color: #f8d7da;
    border-radius: 5px;
    margin: 10px 0;
}

.alert-danger ul {
    list-style-type: none; /* Remove bullets from the list */
    padding-left: 0; /* Remove default padding */
}

.alert-danger li {
    margin: 5px 0; /* Add some spacing between error messages */
}

.error {
    color: red;
    font-size: 12px;
}

.log-out {
    padding: 5px;
    border-radius: 5px;
    color: #d1ad4f;
    font-size: bold;
    border: 0px solid #8b4513;
}
