/* General Body Styles */
body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #fff;
    color: #343434;
    line-height: 1.6;
}

.container {
    max-width: 540px;
    margin-bottom: 20px auto;
}

/* Profile Section */
.profile-img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border: 4px solid #ffd1dc;  /* Soft baby pink border */
    border-radius: 50%;         /* Ensure perfect circle with border */
}

.profile h1 {
    font-size: 1.5rem;
    font-weight: bold;
}

.tagline {
    font-size: 1rem;
    color: #666;
}

/* Intro Text */
.intro-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

/* Link Button */
.link-button {
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    background-color: #f8f8f8;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    overflow: hidden;
}

/* Add this to your existing CSS */
img.thumbnail-image {
    width: 78px;
    height: 156px;
    object-fit: cover;
    object-position: -4px -24px; /* Adjusted to zoom in more on the product */
    flex-shrink: 0;
    overflow: hidden;
}

/* Footer */
footer {
    font-size: 0.875rem;
    color: #666;
}

footer a {
    color: #666;
    text-decoration: none;
}

footer a:hover {
    color: #333;
}