.burger-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 19px;
    cursor: pointer;
    z-index: 2000;
}

.burger-icon span {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
    .burger-icon { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #333;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1500;
        gap: 30px;
    }

    .nav-menu.active { transform: translateX(0); }

    .nav-menu a { font-size: 1.5rem; }

    .burger-icon.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .burger-icon.open span:nth-child(2) { opacity: 0; }
    .burger-icon.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .no-scroll { overflow: hidden; }
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 0;
    background-color: green;
    color: #fff;
    padding: 1rem 1rem;
    border-radius: 5px;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    z-index: 999;
    margin: .5rem;
}


.notification.show {
    transform: translateX(0);
}


.notification.error {
    background-color: red;
}

@media(max-width: 480px) {
    section h1, div h1 {
      font-size: 1.6rem !important;
    }
    section h2, div h2 {
      font-size: 1.35rem !important;
    }
    section h3, div h3 {
      font-size: 1.15rem !important;
    }
    section h4, div h4 {
      font-size: 1.05rem !important;
    }
  
    .info-item {
        flex-direction: column;
        padding: 1rem;
    }

    .article-content {
        padding: 1rem;
    }
    
}
h1,h2,h3,h4,h5,h6,a,p,li {
    word-break: break-word;
}