/*@media (max-width: 600px) {*/

        body {
            background-color: #ffffff;
            font-family: 'Inter', sans-serif;
            color: #1a1a1a;
        }

        .magazine-container {
            width: 65%;
            margin: 10vh auto;
            background: white;
            line-height: 1.6;
        }

        /* The magic for text wrapping */
        .profile-img {
            float: left;
            width: 180px;
            height: 180px;
            margin-right: 1.5rem;
            margin-bottom: 0.5rem;
            border-radius: 50%;
            object-fit: cover;
            /* Tells the text to wrap around the circle shape specifically */
            shape-outside: circle(50%);
            border: 1px solid #eee;
            padding: 4px;
        }

        .headline {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .bio-text {
            font-size: 1.05rem;
            text-align: justify;
            color: #333;
        }

        .dna-section {
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #f0f0f0;
            display: flex;
            flex-direction: column;
            align-items: center; /* This is the magic for perfect vertical alignment */
            text-align: center;
        }

        .dna-label {
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 0.7rem;
            font-weight: 600;
            color: #999;
            display: block;
            margin-bottom: 0.5rem;
        }

        .dna-value {
            font-family: 'Inter', serif;
            font-style: regular;
            font-size: 1rem;
            color: #c1f1f9;
        }