.main-wrapper {
    position: relative;
    display: block;
    padding: 2rem;
}

.more-link {
    display: inline-block;
    background-color: #ff7f50; /* coral/oranye yang kontras dengan biru tab */
    color: #fff;
    border: none; /* hilangkan border untuk modern look */
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    float: inline-end;
    width: 31%;
}

/* Hover effect */
.more-link:hover {
    background-color: #ff5e2e; /* lebih gelap untuk hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Link di dalam tombol */
.more-link a {
    color: #fff !important;
    text-decoration: none;
}

/* Responsif */
@media (max-width: 425px) {
    .more-link {
        width: 55%;
    }
}
@media (max-width: 375px) {
    .more-link {
        width: 65%;
    }
}
@media (max-width: 320px) {
    .more-link {
        width: 81%;
    }
}
