/* Hero Header */
.apropos-header {
    position: relative;
    background: linear-gradient(180deg, rgb(0 0 0 / 58%), rgb(0 0 0 / 18%)), url('../images/img.png') center/cover no-repeat;
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin-top: 95px;
}

.apropos-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 45%);
    z-index: 1;
}

.apropos-header-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 20px;
}

/* LIST CONTAINER */
.resource-list {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ITEM */
.resource-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid var(--sand);
    transition: 0.3s ease;
}

.resource-item:last-child {
    border-bottom: none;
}

/* HOVER */
.resource-item:hover {
    background: var(--orange-lt);
}

/* LEFT SIDE */
.left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ICON */
.icon {
    width: 45px;
    height: 45px;
    background: var(--orange-lt);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}

.icon svg {
    width: 22px;
    height: 22px;
}

/* TEXT */
.text h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark);
}

.text p {
    margin: 3px 0 0;
    font-size: 0.85rem;
    color: var(--warm-gray);
}

/* BUTTON */
.download {
    padding: 8px 16px;
    background: var(--green);
    color: var(--white);
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.download:hover {
    background: var(--green-light);
    color: var(--dark);
}