.ptc-card {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-sizing: border-box;
    width: 100%;
}

.ptc-header {
    width: 100%;
    margin-bottom: 12px;
}

.ptc-header a,
.ptc-header span {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #111111;
    display: block;
}

.ptc-body {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: flex-start;
}

.ptc-image-wrapper {
    flex-shrink: 0;
}

.ptc-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.ptc-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.ptc-link {
    font-size: 14px;
    color: #555555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ptc-link:hover {
    color: #000000;
}
