.gp-single {
    max-width: 920px;
    margin: 0 auto;
    padding: 100px 20px 80px 20px;
}

/* Back link */

.gp-back-link {
    margin-bottom: 30px;
}

.gp-back-link a {
    font-size: 14px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.2s ease;
}

.gp-back-link a:hover {
    color: #000;
}

.gp-back-link a::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-right: 10px;
    position: relative;
    top: -1px;
}

/* Hero */

/* HERO IMAGE */

.gp-hero {
    position: relative;
    margin-bottom: 60px;
    border-bottom: 4px solid #d40000; /* red exactly at image border */
    overflow: hidden;
}

.gp-hero img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

/* Gradient overlay */

.gp-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    pointer-events: none;
}

/* Image credit */

.gp-image-credit {
    position: absolute;
    bottom: 18px;
    right: 20px;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.03em;
    z-index: 2;
}

/* Header */

.gp-single-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 70px;
}

.gp-single-header-left {
    flex: 1;
}

.gp-title {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.gp-organisation {
    font-size: 18px;
    font-weight: 500;
    color: #555;
}

/* Logo */

.gp-logo img {
    max-height: 130px;
    width: auto;
}

/* Content */

.gp-single-content {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 80px;
}

/* Project Link */

.gp-project-link {
    margin-bottom: 60px;
}

.gp-project-link a {
    font-weight: 700;
    text-decoration: underline;
    color: #000;
    transition: opacity 0.2s ease;
}

.gp-project-link a::after {
    content: " →";
}

.gp-project-link a:hover {
    opacity: 0.7;
}

/* Contact */

.gp-contact-card {
    border-top: 3px solid #000;
    padding-top: 30px;
    max-width: 420px;
}

.gp-contact-card h3 {
    font-weight: 800;
    margin-bottom: 18px;
}

.gp-contact-email a {
    text-decoration: underline;
}

.gp-contact-website a {
    text-decoration: underline;
    word-break: break-word;
}

.gp-taxonomy-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.gp-taxonomy-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.gp-taxonomy-pill-branch {
    background: #000;
    color: #fff;
}

.gp-taxonomy-pill-measure {
    background: #d40000;
    color: #fff;
}

/* Responsive */

@media (max-width: 768px) {
	
    .gp-hero img {
        height: 320px;
    }

    .gp-image-credit {
        font-size: 11px;
        right: 15px;
        bottom: 15px;
    }

    .gp-single-header {
        flex-direction: column;
        gap: 30px;
    }

    .gp-logo img {
        max-height: 90px;
    }

    .gp-title {
        font-size: 34px;
    }
}