.about-section {
    padding: 2rem;
    background-color: var(--neutral-light); /* optional background */
}

.about-content-wrapper {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap; /* Enables stacking on small screens */
}

.text-column {
    color: var(--primary-color); /* Text color */
    padding: 2rem;
    border-radius: 10px;
    flex: 1 1 300px; /* Allows flexibility with minimum width */
}
.text-column > p {
    font-size: clamp(1rem, 2.5vw, 1.5rem); /* 👈 responsive font size */
}

.image-column {
    flex: 1 1 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-column img {
    width: 100%;
    height: 100%;
    max-height: 600px; /* optional for better scaling */
    object-fit: cover;
    border-radius: 10px;
}
.contact-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color); /* Use your accent color here */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: var(--secondary-color); /* Slightly darker or complementary hover color */
}

/* Highlight effect */
@keyframes highlight {
	to {
		background-position: 0;
	}
}

mark {
	animation: highlight linear forwards;
	animation-timeline: view(60% 20%);
	background: linear-gradient(
		to right,
		oklch(0.86 0.19 84.89 / 1) 50%,
		oklch(0.86 0.19 84.89 / 0) 50%
	);
    color: var(--primary-color);
	background-position: 100%;
	background-size: 200% 100%;
	border-radius: 0.125rem;
	padding-inline: 0.125rem;
}


/* Responsive stacking for mobile */
@media (max-width: 768px) {
    .about-content-wrapper {
        flex-direction: column;
    }

    .image-column img {
        max-height: 300px; /* optional for better mobile scaling */
    }
}
