.section-column.mastering {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mastering-studio-image {
    background: var(--dark);
    border-radius: 24px;
    margin-bottom: 1em;
    padding: 1em;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.15);
    height: 18em;
}

.mastering-studio-image.vertical {
    background: none;
    padding: 0;
    height: 18em;
    margin-right: 2em;
    float: left;
}

.mastering-studio-text {
    width: 100%;
}

.mastering-studio-text::after {
    content: "";
    display: block;
    clear: both;
}

h3.mastering {
    margin-bottom: 1em;
    font-size: 1.75em;
}

p.mastering {
    font-size: 1.20em;
    margin-bottom: 2em;
}

.mastering.buttons {
    display: flex;
    flex-direction: row;
    gap: 1em;
}

.btn.btn-secondary.mastering:hover {
    color: var(--primary);
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* spacing between rows */
}

.form-row {
    width: 100%;
}

.form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem; /* spacing between columns */
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 170, 168, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 170, 168, 0.1);
}

#mastering-form-button {
    margin-top: 2em;
}



