.pd-profile {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 40px;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

.pd-photo img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.pd-info {
    flex: 1;
    min-width: 0;
}

.pd-name {
    font-size: 2rem;
    border-bottom: 2px solid #999;
    padding-bottom: 20px;
    margin-bottom: 12px;
}

.pd-bio {
    text-align: left;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.pd-profile {
    gap: 30px;
    padding: 30px 20px;
}

.pd-photo {
    flex: 0 0 400px;
    max-width: 400px;
    margin-top: 8px;
}

.pd-photo img {
    border-radius: 8px;
}

.pd-text-name {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.pd-bio p {
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 100%;
}

.official-site-btn {
    margin: 25px 0;
    text-align: right;
}

.official-site-btn a {
    display: inline-block;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 12px 40px 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    font-size: 16px;
}

.official-site-btn a::after {
    content: "";
    position: absolute;
    top: 52%;
    right: 20px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    transition: right 0.3s ease;
}

.official-site-btn a:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.official-site-btn a:hover::after {
    right: 15px;
}

@media screen and (max-width: 991px) {
    .pd-profile {
        padding: 30px;
        gap: 30px;
    }

    .pd-photo {
        flex: 0 0 350px;
        max-width: 350px;
    }

    .pd-bio p {
        font-size: 15px;
    }

    .pd-profile {
        flex-direction: column;
        padding: 25px 20px;
    }

    .pd-photo {
        flex: none;
        width: 100%;
        max-width: 350px;
        margin: 0 auto 20px;
    }

    .pd-name {
        font-size: 2rem;
        text-align: center;
    }

    .pd-bio p {
        font-size: 15px;
    }
}

@media screen and (max-width: 479px) {
    .pd-profile {
        padding: 20px 15px;
    }

    .pd-name {
        font-size: 1.8rem;
    }

    .pd-bio p {
        font-size: 14px;
        line-height: 1.6;
    }
}