.pdf-download-list {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pdf-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #C0C0C0;
    padding-bottom: 20px;
}

.pdf-icon i, .download-icon svg {
    color: #000;
}

.pdf-title {
    flex: 1;
    color: var(--Color-Content-Primary, #0D0D0D);
    font-family: var(--Type-Header-Header-4-Family, Involve);
    font-size: var(--Type-Header-Header-4-Size, 24px);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin: 0 24px;
}

.pdf-download-btn {
    display: inline-block;
    padding: 10px 16px;
    border: 1px solid #000;
    border-radius: 20px;
    text-decoration: none;
}

.download-icon {
    display: flex;
    padding: var(--Spacing-M, 16px) var(--Spacing-XL, 24px);
    align-items: center;
    gap: 8px;
    border-radius: var(--Radii-Full, 1000px);
    background: var(--Color-Buttons-Background-Primary-Idle, #03231B);
}

.pdf-icon {
    display: flex;
    width: 62px;
    height: 62px;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 60px;
    border: 2px solid var(--Color-Border-Tertiary-overlay, rgba(0, 0, 0, 0.25));
}

@media (max-width: 576px) {
.pdf-download-list {
	padding: 0 20px;
}

.pdf-icon {
    display: flex;
    width: 50px;
    height: 48px;
	padding: 0 14px;
}
.pdf-title {
    color: var(--Color-Content-Primary, #0D0D0D);
    font-family: var(--Type-Header-Header-4-Family, Involve);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--Type-Header-Header-4-Weight, 500);
    line-height: 140%;
    flex: 1;
    margin-left: 20px;
}

.download-icon {
    display: flex;
	padding: 12px 18px;
	}
}