/* #region Main Section */

.main-section {
    padding-bottom: 0;
}

.main-section header {
    margin-bottom: 0;
}

.main-section .container {
    max-width: 1200px;
}

/* #endregion */

/* #region Portfolio */

.portfolio-card {
    background: var(--background-primary);
    border: 1px solid var(--background-secondary);
    border-radius: 18px;
    padding: 15px;
}

.portfolio-card:nth-child(odd) {
    background: var(--background-secondary);
}

.portfolio-media img {
    border-radius: 18px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.portfolio-badge {
    background: #E3D8C6;
    color: var(--font-color);
    border: 1px solid rgba(0, 0, 0, .08);
    font-weight: 500;
    padding: .45rem .75rem;
    border-radius: 999px;
    font-size: 14px;
}

/* #endregion */

/* #region Responsive */

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {}

/* Mobile */
@media (max-width: 576px) {}

/* #endregion */